FMEArea is an abstract class. It cannot be created directly.
|
|
__init__()
x.__init__(...) initializes x; see help(type(x)) for signature |
|
|
bool
|
|
bool
|
isConvex()
Determines if area is convex. |
|
|
tuple
|
isInPlane(tolerance,
normalVector,
valD,
recalculateD)
Works similarly to isPlanar(), but checks planarity with respect to
given normal or given plane (if plane equation D is specified - see
below). |
|
|
bool
|
isOriented(rightOrLeft)
This returns True if the geometry has the specified
orientation. |
|
|
bool
|
isPlanar(tolerance)
Returns True if this is planar within the given
tolerance, and False otherwise. |
|
|
None
|
offset(offsetPoint)
Offsets the area by the coords specified by 'offsetPoint'. |
|
|
None
|
orient(rightOrLeft)
This sets the geometry to the specified orientation. |
|
|
None
|
|
None
|
reverse()
This reverses the order of the area's points. |
|
|
None
|
rotate2D(center,
angle)
Rotate the area counterclockwise around the 'center' point by the
specified 'angle' (in degrees). |
|
|
None
|
scale(xScale,
yScale,
zScale)
Scale the feature by the given amounts. |
|
|
|
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,
removeMeasure,
removeTraits,
renameMeasure,
setName,
setTrait,
setTraitNullWithType
Inherited from object:
__delattr__,
__format__,
__getattribute__,
__hash__,
__reduce__,
__reduce_ex__,
__repr__,
__setattr__,
__sizeof__,
__str__,
__subclasshook__
|