Skip to content
This repository was archived by the owner on Apr 25, 2026. It is now read-only.

SketchPoint

Stephen S. Mitchell edited this page Apr 25, 2026 · 4 revisions
  • Namespace: AlibreScript.API
  • Kind: Class

Properties

IsReference

Type: Object True if the point is a reference point, false if it is a regular point

X

Type: Object X-coordinate of point

Y

Type: Object Y-coordinate of point

Methods

SketchPoint

Creates a new sketch point which can be added to sketches

def SketchPoint(x, y, is_reference):
"""
Creates a new sketch point which can be added to sketches

Args:
x (float): X coordinate of sketch point
y (float): Y coordinate of sketch point
is_reference (bool): true to create a reference point, false to create a regular point

"""

Clone this wiki locally