💡 LightUp 7.1 | SketchUp's only real-time renderer that uses object-based rendering
Download Trial
Where's my circle's face?
-
After adding a circle, I've got a circle with no face. How do I get a face?
I tried redrawing one of the edges w/o success.
-
I think you then have to add a face using the circle edge array.
` my_circle = ents.add_circle( params, more, etc )
ents.add_face( my_circle )`
I think that is how it has to be done,
Chris
-
The
add_circle
returns an array of its edges, socircles_edges=entities.add_circle(......)
, to make a face simply usecircles_edges[0].find_faces
...........
Advertisement