Class VecCartesianVector3D

java.lang.Object
com.foursoft.harness.vec.v113.VecCartesianVector
com.foursoft.harness.vec.v113.VecCartesianVector3D
All Implemented Interfaces:
Identifiable, ModifiableIdentifiable, Visitable, Serializable

public class VecCartesianVector3D extends VecCartesianVector implements Serializable, Visitable

A Cartesian vector in three dimensional space.

Java class for CartesianVector3D complex type.

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


 <complexType name="CartesianVector3D">
   <complexContent>
     <extension base="{http://www.prostep.org/ecad-if/2011/vec}CartesianVector">
       <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 Summary

    Fields
    Modifier and Type
    Field
    Description
    protected double
    Specifies the x-coordinate in 3D space.
    protected double
    Specifies the y-coordinate in 3D space.
    protected double
    Specifies the z-coordinate in 3D space.

    Fields inherited from class com.foursoft.harness.vec.v113.VecCartesianVector

    xmlId
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    <R, E extends Throwable>
    R
    accept(Visitor<R,E> aVisitor)
     
    double
    Gets the value of the x property.
    double
    Gets the value of the y property.
    double
    Gets the value of the z property.
    void
    setX(double value)
    Sets the value of the x property.
    void
    setY(double value)
    Sets the value of the y property.
    void
    setZ(double value)
    Sets the value of the z property.

    Methods inherited from class com.foursoft.harness.vec.v113.VecCartesianVector

    getXmlId, setXmlId, toString

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
  • Field Details

    • x

      protected double x

      Specifies the x-coordinate in 3D space.

    • y

      protected double y

      Specifies the y-coordinate in 3D space.

    • z

      protected double z

      Specifies the z-coordinate in 3D space.

  • Constructor Details

    • VecCartesianVector3D

      public VecCartesianVector3D()
  • Method Details

    • getX

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

      Specifies the x-coordinate in 3D space.

    • 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 y-coordinate in 3D space.

    • 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 z-coordinate in 3D space.

    • setZ

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

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