Face3d¶
A 3DFACE (DXF Reference) is real 3D solid filled triangle or quadrilateral. Access vertices by name
(entity.dxf.vtx0 = (1.7, 2.3)) or by index (entity[0] = (1.7, 2.3)).
Subclass of |
|
DXF type |
|
Factory function |
|
Inherited DXF attributes |
Warning
Do not instantiate entity classes by yourself - always use the provided factory functions!
- class ezdxf.entities.Face3d¶
Face3dbecause3dfaceis not a valid Python class name.- dxf.invisible_edge¶
invisible edge flag (int, default=0)
1
first edge is invisible
2
second edge is invisible
4
third edge is invisible
8
fourth edge is invisible
Combine values by adding them, e.g. 1+4 = first and third edge is invisible.
- wcs_vertices(close: bool = False) List[Vec3]¶
Returns WCS vertices, if argument close is
True, last vertex == first vertex.returns 4 vertices when close=False and 5 vertices when close=True. Some edges may have 0 length.
Compatibility interface to SOLID and TRACE. The 3DFACE entity returns already WCS vertices.