Skip to content

Latest commit

 

History

History
45 lines (35 loc) · 758 Bytes

File metadata and controls

45 lines (35 loc) · 758 Bytes

SetLayerCutPlane

Description

Sets the cut plane of the layer.

PROCEDURE SetLayerCutPlane(
				layer    : HANDLE;
				cutPlane : REAL (Coordinate));
def vs.SetLayerCutPlane(layer, cutPlane):
    return None

Parameters

Name Type Description
layer HANDLE The layer.
cutPlane REAL (Coordinate) The cut plane.

Examples

SetLayerCutPlane(layer, 1.0);
import vs

# Sets the cut plane of the layer.
layer = vs.ActLayer()  # handle to the active design layer
cutPlane = 1.0

vs.SetLayerCutPlane(layer, cutPlane)

See Also

VS Functions: GetLayerCutPlane

Version

Availability: from Vectorworks 2017

Category