Point

open class Point

Java class for Point complex type

.

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


<complexType name="Point">
  <complexContent>
    <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
      <sequence>
        <element name="x" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
        <element name="y" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
        <element name="z" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
      </sequence>
    </restriction>
  </complexContent>
</complexType>

Constructors

Link copied to clipboard
constructor()

Functions

Link copied to clipboard
open fun getX(): Double
Gets the value of the x property.
Link copied to clipboard
open fun getY(): Double
Gets the value of the y property.
Link copied to clipboard
open fun getZ(): Double
Gets the value of the z property.
Link copied to clipboard
open fun setX(value: Double)
Sets the value of the x property.
Link copied to clipboard
open fun setY(value: Double)
Sets the value of the y property.
Link copied to clipboard
open fun setZ(value: Double)
Sets the value of the z property.