/** Returns a copy of this Tags, with bezierOutgoing * changed to the given value, which may be null if the tag * is not present. */ public Tags cloneWithBezierOutgoing(Placement bezierOutgoing) { Tags tags = (Tags)clone(); tags._bezierOutgoing = bezierOutgoing; return tags; }
/** Returns a copy of this Tags, with the absolute placement changed to * the given value, which may be null if the tag is not present. */ public Tags cloneWithAbsolutePlacement(Placement absolutePlacement) { var tags = clone(); tags._absolutePlacement = absolutePlacement; return tags; }