Class: EnfEditor::EEBrepVertex
- Inherits:
-
EECompRepChildElement
- Object
- EEBase
- EEElement
- EECompRepChildElement
- EnfEditor::EEBrepVertex
- Includes:
- ColorUtils, PropertyUtils, UserPropertyUtils
- Defined in:
- lib/enfeditor/core_ext/ee_brep.rb,
ext/enfhandler/EnfHandler_wrap2.cxx
Overview
Proxy of C++ EnfEditor::EEBrepVertex class
Instance Method Summary collapse
- #display=(value) ⇒ Object
-
#display? ⇒ Boolean
Returns display status of element.
-
#layer ⇒ Integer?
Returns layer number or nil for none.
- #layer=(value) ⇒ Object
-
#point ⇒ EEBrepPoint
Returns point of vertex.
Methods included from ColorUtils
#has_material_color?, #has_material_color_rgb?, #material_color, #material_color=
Methods included from UserPropertyUtils
#create_user_property, #user_properties
Methods inherited from EEElement
Methods inherited from EEBase
Instance Method Details
#display=(value) ⇒ Object
250 251 252 |
# File 'lib/enfeditor/core_ext/ee_brep.rb', line 250 def display=(value) point.display = value end |
#display? ⇒ Boolean
Returns display status of element.
243 |
# File 'lib/enfeditor/core_ext/ee_brep.rb', line 243 def display?; point.display?; end |
#layer ⇒ Integer?
Returns layer number or nil for none.
226 |
# File 'lib/enfeditor/core_ext/ee_brep.rb', line 226 def layer; point.layer; end |
#layer=(value) ⇒ Object
233 234 235 |
# File 'lib/enfeditor/core_ext/ee_brep.rb', line 233 def layer=(value) point.layer = value end |
#point ⇒ EEBrepPoint
Returns point of vertex.