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
IFMEPathif 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 theFMECurveinheritance graph. For example, aFMEPathis returned if the geometry truly is a path.