Package gov.nasa.gsfc.sscweb.schema
Class CartesionCoordinates
java.lang.Object
gov.nasa.gsfc.sscweb.schema.Coordinates
gov.nasa.gsfc.sscweb.schema.CartesionCoordinates
Cartesian Coordinates.
<p>Java class for CartesionCoordinates complex type</p>.
<p>The following schema fragment specifies the expected content contained within this class.</p>
<pre>{@code
<complexType name="CartesionCoordinates">
<complexContent>
<extension base="{http://sscweb.gsfc.nasa.gov/schema}Coordinates">
<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>
}</pre>
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiondoublegetX()X coordinate value.doublegetY()Y coordinate value.doublegetZ()Z coordinate value.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.
-
Field Details
-
x
protected double xX coordinate value. -
y
protected double yY coordinate value. -
z
protected double zZ coordinate value.
-
-
Constructor Details
-
CartesionCoordinates
public CartesionCoordinates()
-
-
Method Details
-
getX
public double getX()X coordinate value. -
setX
public void setX(double value) Sets the value of the x property. -
getY
public double getY()Y coordinate value. -
setY
public void setY(double value) Sets the value of the y property. -
getZ
public double getZ()Z coordinate value. -
setZ
public void setZ(double value) Sets the value of the z property.
-