Class RotationVectorCT
- java.lang.Object
-
- fi.tut.mei.resdescapi.rdapi.model.rd.RotationVectorCT
-
public class RotationVectorCT extends Object
Rotation Vector definition. Unit vector and positive rotation around the vector in radians (=angle)Java class for RotationVector_CT complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="RotationVector_CT"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <attribute name="x" use="required" type="{http://www.w3.org/2001/XMLSchema}float" /> <attribute name="y" use="required" type="{http://www.w3.org/2001/XMLSchema}float" /> <attribute name="z" use="required" type="{http://www.w3.org/2001/XMLSchema}float" /> <attribute name="angle" use="required" type="{http://www.w3.org/2001/XMLSchema}float" /> </restriction> </complexContent> </complexType>
-
-
Constructor Summary
Constructors Constructor Description RotationVectorCT()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description float
getAngle()
Gets the value of the angle property.float
getX()
Gets the value of the x property.float
getY()
Gets the value of the y property.float
getZ()
Gets the value of the z property.void
setAngle(float value)
Sets the value of the angle property.void
setX(float value)
Sets the value of the x property.void
setY(float value)
Sets the value of the y property.void
setZ(float value)
Sets the value of the z property.
-
-
-
Method Detail
-
getX
public float getX()
Gets the value of the x property.
-
setX
public void setX(float value)
Sets the value of the x property.
-
getY
public float getY()
Gets the value of the y property.
-
setY
public void setY(float value)
Sets the value of the y property.
-
getZ
public float getZ()
Gets the value of the z property.
-
setZ
public void setZ(float value)
Sets the value of the z property.
-
getAngle
public float getAngle()
Gets the value of the angle property.
-
setAngle
public void setAngle(float value)
Sets the value of the angle property.
-
-