Trace¶
TRACE entity (DXF Reference) is 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)
). If only 3 vertices are provided the
last (3rd) vertex will be repeated in the DXF file.
The TRACE entity stores the vertices in an unusual way, the last two vertices are reversed. The coordinates [(0, 0), (1, 0), (1, 1), (0, 1)] do not create a square as you would expect:

Reverse the last two vertices to get the expected square: [(0, 0), (1, 0), (0, 1), (1, 1)]

Note
The Trace.vertices()
and Trace.wcs_vertices()
methods return the
vertices in the expected (reversed) order.
Subclass of |
|
DXF type |
|
Factory function |
|
Inherited DXF attributes |
Warning
Do not instantiate entity classes by yourself - always use the provided factory functions!