Class VecCartesianPoint3D

java.lang.Object
com.foursoft.harness.vec.v113.VecExtendableElement
com.foursoft.harness.vec.v113.VecCartesianPoint3D
All Implemented Interfaces:
Identifiable, ModifiableIdentifiable, HasCustomProperties<VecCustomProperty>, Visitable, Serializable

public class VecCartesianPoint3D extends VecExtendableElement implements Serializable, Visitable

A CartesianPoint3D is a point that is defined by its coordinates in a rectangular three-dimensional Cartesian coordinate system.

Java class for CartesianPoint3D complex type.

The following schema fragment specifies the expected content contained within this class.


 <complexType name="CartesianPoint3D">
   <complexContent>
     <extension base="{http://www.prostep.org/ecad-if/2011/vec}ExtendableElement">
       <sequence>
         <element name="X" type="{http://www.w3.org/2001/XMLSchema}double"/>
         <element name="Y" type="{http://www.w3.org/2001/XMLSchema}double"/>
         <element name="Z" type="{http://www.w3.org/2001/XMLSchema}double"/>
       </sequence>
     </extension>
   </complexContent>
 </complexType>
 
See Also:
  • Field Details

    • x

      protected double x

      Specifies the value of x-coordinate of the Cartesian point. The unit of this value is the baseUnit of containing BuildingBlockSpecification3D.

    • y

      protected double y

      Specifies the value of y-coordinate of the Cartesian point. The unit of this value is the baseUnit of containing BuildingBlockSpecification3D.

    • z

      protected double z

      Specifies the value of z-coordinate of the Cartesian point. The unit of this value is the baseUnit of containing BuildingBlockSpecification3D.

  • Constructor Details

    • VecCartesianPoint3D

      public VecCartesianPoint3D()
  • Method Details

    • getX

      public double getX()
      Gets the value of the x property.

      Specifies the value of x-coordinate of the Cartesian point. The unit of this value is the baseUnit of containing BuildingBlockSpecification3D.

    • setX

      public void setX(double value)
      Sets the value of the x property.
      See Also:
    • getY

      public double getY()
      Gets the value of the y property.

      Specifies the value of y-coordinate of the Cartesian point. The unit of this value is the baseUnit of containing BuildingBlockSpecification3D.

    • setY

      public void setY(double value)
      Sets the value of the y property.
      See Also:
    • getZ

      public double getZ()
      Gets the value of the z property.

      Specifies the value of z-coordinate of the Cartesian point. The unit of this value is the baseUnit of containing BuildingBlockSpecification3D.

    • setZ

      public void setZ(double value)
      Sets the value of the z property.
      See Also:
    • getRefBSplineCurve

      public Set<VecBSplineCurve> getRefBSplineCurve()
      Gets a Set of all VecBSplineCurve that have a outgoing reference to this object.
      Warning!: This is a readonly property! It has to be initialized during the unmarshalling process by the ExtendedUnmarshaller.
      This property is consistent to the state of object model at the time of unmarshalling. It does not reflect any changes done in the object model after the unmarshalling.
      This property has no effect when the object is marshalled to xml.
    • getRefGeometryNode3D

      public Set<VecGeometryNode3D> getRefGeometryNode3D()
      Gets a Set of all VecGeometryNode3D that have a outgoing reference to this object.
      Warning!: This is a readonly property! It has to be initialized during the unmarshalling process by the ExtendedUnmarshaller.
      This property is consistent to the state of object model at the time of unmarshalling. It does not reflect any changes done in the object model after the unmarshalling.
      This property has no effect when the object is marshalled to xml.
    • getRefTransformation3D

      public Set<VecTransformation3D> getRefTransformation3D()
      Gets a Set of all VecTransformation3D that have a outgoing reference to this object.
      Warning!: This is a readonly property! It has to be initialized during the unmarshalling process by the ExtendedUnmarshaller.
      This property is consistent to the state of object model at the time of unmarshalling. It does not reflect any changes done in the object model after the unmarshalling.
      This property has no effect when the object is marshalled to xml.
    • getParentBuildingBlockSpecification3D

      public VecBuildingBlockSpecification3D getParentBuildingBlockSpecification3D()
      Gets a reference to the parent of this object in the XML DOM Tree. If this class can have different parents in DOM, this property is initialized with the parent, if the parent is a VecBuildingBlockSpecification3D otherwise it will be null.
      Warning!: This is a readonly property! It has to be initialized during the unmarshalling process by the ExtendedUnmarshaller.
      This property is consistent to the state of object model at the time of unmarshalling. It does not reflect any changes done in the object model after the unmarshalling.
      This property has no effect when the object is marshalled to xml.
    • accept

      public <R, E extends Throwable> R accept(Visitor<R,E> aVisitor) throws E
      Specified by:
      accept in interface Visitable
      Throws:
      E extends Throwable