Package com.foursoft.harness.vec.v113
Class VecCartesianVector3D
java.lang.Object
com.foursoft.harness.vec.v113.VecCartesianVector
com.foursoft.harness.vec.v113.VecCartesianVector3D
- All Implemented Interfaces:
Identifiable,ModifiableIdentifiable,Visitable,Serializable
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
FieldsModifier and TypeFieldDescriptionprotected doubleSpecifies the x-coordinate in 3D space.protected doubleSpecifies the y-coordinate in 3D space.protected doubleSpecifies the z-coordinate in 3D space.Fields inherited from class com.foursoft.harness.vec.v113.VecCartesianVector
xmlId -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescription<R,E extends Throwable>
RdoublegetX()Gets the value of the x property.doublegetY()Gets the value of the y property.doublegetZ()Gets the value of the z property.voidsetX(double value) Sets the value of the x property.voidsetY(double value) Sets the value of the y property.voidsetZ(double value) Sets the value of the z property.Methods inherited from class com.foursoft.harness.vec.v113.VecCartesianVector
getXmlId, setXmlId, toString
-
Field Details
-
x
protected double xSpecifies the x-coordinate in 3D space.
-
y
protected double ySpecifies the y-coordinate in 3D space.
-
z
protected double zSpecifies 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
-