Skip to main content

A simple Python API for the Laser Utility project

Project description

Python API for Laser Utility

This is a public Python API for the Laser Utility program.

When running, Laser Utility hosts a local JSON-RPC over TCP server bound to a local port on the loopback address. This API provides a series of constructs which allow you to work with the internal state of the software with a native feel in Python. Internally, the various API objects are maintaining state in order to provide the appearance of a shared application domain, while instead transforming actions into discrete JSON-RPC calls.

Installation

Install the laser-util-api package from PyPi. For example, using pip:

pip install laser-util-api

Examples

General Connection and Client Settings

sample2.py To connect to the API, the Laser Utility program must be running. In the lower left corner of the software, the RPC server port will be displayed next to a green circle. The default port is 5000, but concurrent open windows will take the next available port in ascending order.

If no arguments are supplied, the client will default to port 5000 and length units of millimeters.

from laser_util_api import ApiClient

client = ApiClient()

Alternatively, port and units can be specified.

from laser_util_api import ApiClient, Units

client = ApiClient(port=5001, units=Units.INCHES)

Listing and Editing Existing Project Items

Project items based on the common workspace entity format can be listed and modified from the API. These are typically project items which have a name, origin, visibility, etc.

import math
from laser_util_api import ApiClient, Xyr

client = ApiClient()
items = client.project_items()

# Print out the existing project tree items
for item in items:
    print(item)

# Grab the first item (assuming there's at least one) and change its name
working = next(items)
working.name = "Name Changed from API"

# Change the value of its origin position
working.origin = Xyr(100, 200, math.pi / 2)

# Set the parent of the origin to the last item in the list (assuming there's more than one)
working.origin_parent = items[-1]

# Finally, set the origin parent back to the workspace origin
working.origin_parent = None

# We can also delete an item with the delete method
working.delete()

The Scratch Workspaces

There are two scratch workspaces where you can create boundary loops and bodies. These workspaces are created when the client connects to the application and are disposed when the client disconnects. Things created in the scratch workspaces are unique to the client and not preserved between sessions.

Items in the scratch workspace can be used to create project items.

Loops

There are several ways of creating boundary loops in the scratch workspace. Each will return a LoopHandle object, which will allow further modifications to the loop.

from laser_util_api import ApiClient, Vector

client = ApiClient()

# Create a rectangle whose top-left corner is at x=1, y=2, with width=3 and height=4
rect = client.scratch.loops.rectangle(Vector(1, 2), 3, 4)

# Create a rounded rectangle of the same parameters, but with corner radius 0.25
rnd_rect = client.scratch.loops.rounded_rectangle(Vector(1, 2), 3, 4, 0.25)

# Create a circle at x=1, y=2, with radius=3
circle = client.scratch.loops.circle(Vector(1, 2), 3)

# Reverse the circle direction, turning it into a negative boundary
circle.reverse()

# Create an empty loop, then use the cursor to insert a pill shape.  Each element added to the boundary (segment or
# arc) has the *start* point defined, and will run until it hits the start point of the *next* element.  For arcs, the
# circle center must be equidistant from the arc start point and the start point of the next element.
pill = client.scratch.loops.create()
pill.insert_seg_abs(Vector(0, 0))
pill.insert_arc_abs(Vector(1, 0), Vector(1, 1), False)
pill.insert_seg_abs(Vector(1, 2))
pill.insert_arc_abs(Vector(0, 2), Vector(0, 1), False)

Bodies

A body can be created from an initial boundary loop (must be positive), and then modified through shape operations performed with more boundary loops.

To create a basic boundary loop, first let's use a circle.

from laser_util_api import ApiClient, Vector

client = ApiClient()

# Create a circle boundary at 0, 0 with radius 1
circle = client.scratch.loops.circle(Vector(0, 0), 1)

# Now create a body from the circle.
body = client.scratch.bodies.create(circle)

# Now create a rectangular cut to take out of it.
cut0 = client.scratch.loops.rectangle(Vector(0, -0.5), 2, 1)
cut0.reverse()
body.operate(cut0)

# Now create a positive protrusion to add to the top
pos0 = client.scratch.loops.circle(Vector(0, 1), 0.375)
body.operate(pos0)

Creating a Body Project Item

Creating an actual project item from a body can be done using either a loop or a body. Both will be immutable after creation, but will persist after the client program ends.

from laser_util_api import ApiClient, Vector

client = ApiClient()

# Create a circle boundary at 0, 0 with radius 1
circle = client.scratch.loops.circle(Vector(0, 0), 1)

# Create a circle body project item from the circle loop.
circle_body = client.create_body(circle)
circle_body.name = "Body Item from Boundary Loop"

# Now we'll create a body with a cut from the circle and use it to create a more complex body project item
body = client.scratch.bodies.create(circle)
cut0 = client.scratch.loops.rectangle(Vector(0, -0.5), 2, 1)
cut0.reverse()
body.operate(cut0)

complex_body = client.create_body(body)
complex_body.name = "Body Item from Body"

Creating and Editing an Etch Project Item

Etch project items can have text and lines. The following is an example of creating graduated scale marks.

from laser_util_api import ApiClient, Vector, Units

client = ApiClient(units=Units.INCHES)

# Create the etch entity
etch = client.create_etch()
etch.name = "Example Etch Markings"

# From a corner at 1, 2 inches, we'll put marks every 1/2 inch
corner = Vector(1, 2)

for i in range(5):
    mark = corner + Vector(0.5, 0) * i
    
    # Create a vertical line starting at the mark point, 0.25 in tall, with a width of 0.01 inches
    etch.add_line(mark, mark + Vector(0, 0.25), 0.01)
    
    # Create a text item horizontally centered at the mark, up 0.25 inches. See the
    # function documentation for details
    etch.add_text(mark - Vector(0, 0.25), 0, f"{i + 1}", 1, 1, 1)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

laser_util_api-0.1.2-py3-none-any.whl (13.2 kB view details)

Uploaded Python 3

File details

Details for the file laser_util_api-0.1.2-py3-none-any.whl.

File metadata

File hashes

Hashes for laser_util_api-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 4101d2a9e778e9a251ad709f58646348740726d59ed8f5380970402502c68207
MD5 779c066edb314d32f1640aa38a6b6528
BLAKE2b-256 d91297d6cf6c7823d965208c496e145bbbe5a5c2211ef6bf78d0fcece566fbf2

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page