1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
Face3d
======
.. module:: ezdxf.entities
:noindex:
A 3DFACE (`DXF Reference`_) is real 3D solid filled triangle or quadrilateral. Access vertices by name
(:code:`entity.dxf.vtx0 = (1.7, 2.3)`) or by index (:code:`entity[0] = (1.7, 2.3)`).
======================== ==========================================
Subclass of :class:`ezdxf.entities.DXFGraphic`
DXF type ``'3DFACE'``
Factory function :meth:`ezdxf.layouts.BaseLayout.add_3dface`
Inherited DXF attributes :ref:`Common graphical DXF attributes`
======================== ==========================================
.. warning::
Do not instantiate entity classes by yourself - always use the provided factory functions!
.. class:: Face3d
:class:`Face3d` because :class:`3dface` is not a valid Python class name.
.. attribute:: dxf.vtx0
Location of 1. vertex (3D Point in :ref:`WCS`)
.. attribute:: dxf.vtx1
Location of 2. vertex (3D Point in :ref:`WCS`)
.. attribute:: dxf.vtx2
Location of 3. vertex (3D Point in :ref:`WCS`)
.. attribute:: dxf.vtx3
Location of 4. vertex (3D Point in :ref:`WCS`)
.. attribute:: 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.
.. automethod:: transform
.. automethod:: wcs_vertices
.. _DXF Reference: http://help.autodesk.com/view/OARX/2018/ENU/?guid=GUID-747865D5-51F0-45F2-BEFE-9572DBC5B151
|