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
¶ Face3d
because3dface
is 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.
-