modify_end#

line.modify_end() int#

These optional commands can be used to demarcate a series of line: commands which apply to the same line or lines so that they can be executed at one time for better performance.

Examples:
ensight.line.select_begin(1)
ensight.line.modify_begin()
ensight.line.rgb(1,0,0)
# WARNING: following line includes OBSOLETE call (ensight.line.location_x).
ensight.line.location_x(1,100)
# WARNING: following line includes OBSOLETE call (ensight.line.location_y).
ensight.line.location_y(1,20)
# WARNING: following line includes OBSOLETE call (ensight.line.location_x).
ensight.line.location_x(2,10)
# WARNING: following line includes OBSOLETE call (ensight.line.location_y).
ensight.line.location_y(2,10)
ensight.line.modify_end()
Returns:

zero on success, non-zero on error