Point#

class pyaedt.modeler.cad.elements3d.Point(primitives, name)[source]#

Manages point attributes for the AEDT 3D Modeler.

Parameters:
primitivespyaedt.modeler.Primitives3D.Primitives3D

Inherited parent object.

namestr

Name of the point.

Examples

Basic usage demonstrated with an HFSS design:

>>> from pyaedt import Hfss
>>> aedtapp = Hfss()
>>> primitives = aedtapp.modeler

Create a point, to return an pyaedt.modeler.Object3d.Point.

>>> point = primitives.create_point([30, 30, 0], "my_point", (0, 195, 255))
>>> my_point = primitives.points[point.name]

Methods

Point.delete()

Delete the point.

Point.set_color(color_value)

Set symbol color.

Attributes

Point.coordinate_system

Coordinate system of the point.

Point.logger

Logger.

Point.name

Name of the point as a string value.

Point.valid_properties

Valid properties.