FME Point class.
Create an instance of a Point geometry object.
Default FMEPoint constructor.
Creates a point with the given xyz coordinates.
Create a copy of the passed in Point geometry object.
|
|
__init__(MultipleInvocations)
x.__init__(...) initializes x; see help(type(x)) for signature |
|
|
bool
|
equalCoordinate(point,
checkZ)
Returns True if the two points have the identical
coordinate. |
|
|
bool
|
equals(point)
Returns True if the two points have the identical
coordinate and measures. |
|
|
float
|
getMeasureValue(measureName)
Returns the value of the default measure, or the measure named by
'measureName'. |
|
|
tuple of floats
|
getXYZ()
Get the coordinate value. |
|
|
None
|
offset(offsetPoint)
Offsets the geometry by the coords specified by offsetPoint. |
|
|
None
|
|
None
|
reset(point)
Set the coordinate and measure values to the values in the given
point. |
|
|
None
|
rotate2D(center,
angle)
Rotates the point. |
|
|
None
|
scale(xScale,
yScale,
zScale)
zScale is ignored if geometry is 2D. |
|
|
None
|
setMeasure(measureValue,
measureName)
Sets the value of the default measure, or creates the default measure
if it doesn't exist. |
|
|
None
|
setX(newX)
Set the x coordinate value. |
|
|
None
|
setXYZ(newX,
newY,
newZ)
Set the coordinate value. |
|
|
None
|
|
None
|
setY(newY)
Set the y coordinate value. |
|
|
None
|
setZ(newZ)
Set the z coordinate value. |
|
|
|
Inherited from FMEGeometry:
__getObject__,
__new__,
boundingBox,
boundingCube,
bounds,
clearMeasures,
copyAttributesFromFeature,
copyNameFromGeometry,
copyTraitsFromGeometry,
copyTraitsToFeature,
deleteName,
force2D,
force3D,
getArea,
getMeasureNames,
getName,
getTrait,
getTraitNames,
getTraitNullMissingAndType,
getTraitType,
hasMeasures,
hasName,
is3D,
isCollection,
measureExists,
removeTraits,
renameMeasure,
setName,
setTrait,
setTraitNullWithType
Inherited from object:
__delattr__,
__format__,
__getattribute__,
__hash__,
__reduce__,
__reduce_ex__,
__repr__,
__setattr__,
__sizeof__,
__str__,
__subclasshook__
|