fmeobjects.FMEGeometryTools.appendCurve¶
-
FMEGeometryTools.
appendCurve
(destinationCurve, sourceCurve)¶ Appends the source curve to the destination curve. This will not merge curves but simply append them into an
IFMEPath
if necessary. If the source curve isNone
, nothing will be done and the destination curve will be returned. If the destination curve isNone
, it will be set to the source curve. If the source and destination curves do not have touching end points, a line will be inserted to connect them.Parameters: Return type: Returns: The appended curve. Note: This method returns a terminal geometry type of the
FMECurve
; i.e. one of the leaf classes in theFMECurve
inheritance graph. For example, aFMEPath
is returned if the geometry truly is a path.