public class PointCesiumProperty extends CesiumProperty<Cartesian>
CesiumProperty
that writes values by evaluating a given Point
.
The given Point
will be evaluated, and the calculated
Cartesian
values will be written to the document.
Constructor and Description |
---|
PointCesiumProperty()
Initializes a new instance.
|
PointCesiumProperty(Point point)
Initializes a new instance with the provided
Point . |
Modifier and Type | Method and Description |
---|---|
Duration |
getBackwardExtrapolationDuration()
Gets the amount of time to extrapolate backward before the property becomes undefined.
|
CesiumExtrapolationType |
getBackwardExtrapolationType()
Gets the type of extrapolation to perform when a value is requested at a time before any available samples.
|
Duration |
getForwardExtrapolationDuration()
Gets the amount of time to extrapolate forward before the property becomes undefined.
|
CesiumExtrapolationType |
getForwardExtrapolationType()
Gets the type of extrapolation to perform when a value is requested at a time after any available samples.
|
CesiumInterpolationAlgorithm |
getInterpolationAlgorithm()
Gets the algorithm to use for interpolation.
|
Integer |
getInterpolationDegree()
Gets the degree of the polynomial to use for interpolation.
|
Point |
getPoint()
Gets the Point.
|
void |
setBackwardExtrapolationDuration(Duration value)
Sets the amount of time to extrapolate backward before the property becomes undefined.
|
void |
setBackwardExtrapolationType(CesiumExtrapolationType value)
Sets the type of extrapolation to perform when a value is requested at a time before any available samples.
|
void |
setForwardExtrapolationDuration(Duration value)
Sets the amount of time to extrapolate forward before the property becomes undefined.
|
void |
setForwardExtrapolationType(CesiumExtrapolationType value)
Sets the type of extrapolation to perform when a value is requested at a time after any available samples.
|
void |
setInterpolationAlgorithm(CesiumInterpolationAlgorithm value)
Sets the algorithm to use for interpolation.
|
void |
setInterpolationDegree(Integer value)
Sets the degree of the polynomial to use for interpolation.
|
void |
setPoint(Point value)
Sets the Point.
|
static PointCesiumProperty |
toPointCesiumProperty(Point value)
Converts a
Point to a PointCesiumProperty . |
createGenerators, toCesiumProperty, toCesiumProperty, toCesiumProperty
public static PointCesiumProperty toPointCesiumProperty(Point value)
Point
to a PointCesiumProperty
.value
- The value to convert.PointCesiumProperty
configured with the given Point
,
or null
if value
is null
.public final Point getPoint()
public final void setPoint(Point value)
@Nullable public final CesiumInterpolationAlgorithm getInterpolationAlgorithm()
null
indicates that the value will not be specified in the CZML output.public final void setInterpolationAlgorithm(@Nullable CesiumInterpolationAlgorithm value)
null
indicates that the value will not be specified in the CZML output.@Nullable public final Integer getInterpolationDegree()
null
indicates that the value will not be specified in the CZML output.public final void setInterpolationDegree(@Nullable Integer value)
null
indicates that the value will not be specified in the CZML output.@Nullable public final CesiumExtrapolationType getForwardExtrapolationType()
null
indicates that the value will not be specified in the CZML output.public final void setForwardExtrapolationType(@Nullable CesiumExtrapolationType value)
null
indicates that the value will not be specified in the CZML output.@Nullable public final Duration getForwardExtrapolationDuration()
null
indicates that the value will not be specified in the CZML output.public final void setForwardExtrapolationDuration(@Nullable Duration value)
null
indicates that the value will not be specified in the CZML output.@Nullable public final CesiumExtrapolationType getBackwardExtrapolationType()
null
indicates that the value will not be specified in the CZML output.public final void setBackwardExtrapolationType(@Nullable CesiumExtrapolationType value)
null
indicates that the value will not be specified in the CZML output.@Nullable public final Duration getBackwardExtrapolationDuration()
null
indicates that the value will not be specified in the CZML output.public final void setBackwardExtrapolationDuration(@Nullable Duration value)
null
indicates that the value will not be specified in the CZML output.