POV-Ray : Newsgroups : povray.newusers : CSG and transformations : CSG and transformations Server Time
28 Jul 2024 22:25:45 EDT (-0400)
  CSG and transformations  
From: stevenvh
Date: 12 Jul 2007 08:25:01
Message: <web.46961d4fd8139975e99dba500@news.povray.org>
[povray virgin warning!]

Hi,
I'm trying to transform objects in some basic CSG (see code below), but I
notice that the transformation only applies to the finished CSG object.
I realize I can do the arc transformation inside the arc macro, and pass a
zillion parameters for rotating, translating, etc, but IMO that's not how
it should be. You can't foresee all possible sequential transformations.
Any help will be greatly appreciated!
Steven


-------------- code start ----------------

#macro arc (H, W, L)
union {
    cylinder { <-L / 2, W, 0>, < L / 2, W, 0>, W / 2 }
    box { <-L / 2, -.001, -W / 2>, <L / 2, W , W / 2> }
    }
#end

difference {
  box { <-50, 0, -50>, <50, 0, 50> }
  // subtract following
  arc (50, 40, 120)                     // along the x-axis
  arc (50, 40, 120) rotate y * 90       // along the z-axis

  pigment { Gray85 }
}
---------------- code end ----------------


Post a reply to this message

Copyright 2003-2023 Persistence of Vision Raytracer Pty. Ltd.