Hi,
In the built in Plane Object the segment count is (sadly) limited to 1000
Would it be possible to create an own Python Generator Plane Object without this limitation?
(I dont want a plugin solution, because that does not work with renderfarms)
import c4d
def main():
w = op[c4d.ID_USERDATA,1] #witdh
h = op[c4d.ID_USERDATA,2] #height
ws = op[c4d.ID_USERDATA,3] #subw
hs = op[c4d.ID_USERDATA,3] #subh
p = c4d.BaseObject(c4d.Opolygon)
.... # needs help
return p
i need this for huge planes with a lot of segments (ocean surface), so it should be as fast as possible.
i think after creating an empty polygon either define all needed points/polys
or define just 4 points/1 polygon and then subdivide it