I have a big problem with RhinoScript memory.
Example:
Dim AObjets
AObjets = Rhino.AllObjects
Dim AxeX
AxeX = Array(1, 0, 0)
For i = 1 To 20
Rhino.RotateObjects AObjets, pCC, 2, AxeX
Next
At each execution of the RotateObjects function, a portion of the memory is used, and is not returned.
This leads to crash Rhino.
Do you know a solution?
Thank you.
Tags: RhinoScript, memory
-
▶ Reply to This