Package com.foursoft.harness.vec.v113
Class VecCartesianVector2D
java.lang.Object
com.foursoft.harness.vec.v113.VecCartesianVector
com.foursoft.harness.vec.v113.VecCartesianVector2D
- All Implemented Interfaces:
Identifiable,ModifiableIdentifiable,Visitable,Serializable
A Cartesian vector in the two dimensional space.
Java class for CartesianVector2D complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="CartesianVector2D">
<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"/>
</sequence>
</extension>
</complexContent>
</complexType>
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected doubleSpecifies the x-coordinate in 2D space.protected doubleSpecifies the y-coordinate in 2D space.Fields inherited from class com.foursoft.harness.vec.v113.VecCartesianVector
xmlId -
Constructor Summary
Constructors -
Method Summary
Methods inherited from class com.foursoft.harness.vec.v113.VecCartesianVector
getXmlId, setXmlId, toString
-
Field Details
-
x
protected double xSpecifies the x-coordinate in 2D space.
-
y
protected double ySpecifies the y-coordinate in 2D space.
-
-
Constructor Details
-
VecCartesianVector2D
public VecCartesianVector2D()
-
-
Method Details
-
getX
public double getX()Gets the value of the x property.Specifies the x-coordinate in 2D 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 2D space.
-
setY
public void setY(double value) Sets the value of the y property.- See Also:
-
accept
-