Jamie Balfour

Welcome to my personal website.

Find out more about me, my personal projects, reviews, courses and much more here.

Official ZPE/YASS documentationPoint

Introduction

The Point object represents a two-dimensional coordinate (x, y).

Internally, it wraps a java.awt.Point instance and is primarily intended for use in graphical or UI-related contexts where coordinates are required.

A Point is created using its constructor and two coordinate values.

All functions exposed by this object require a permission level of 0.

Point object functions

The following is a list of internal functions the Point object exposes. All functions are ZPEObjectNativeFunctions therefore run in native code.

_construct(string x, string y) ⇒ Point
Constructs a Point object using the supplied x and y values. The values are converted to integers internally. The constructor returns the Point object itself.

Examples

Creating a simple point:

YASS
$p = new Point(100, 250)

print($p)

Using a Point in a graphical context:

YASS
$location = new Point(50, 75)

# Example usage: pass to a UI component or drawing function

Notes:

  • Integer coordinates: The x and y values are converted to integers internally.
  • String parameters: The constructor accepts values that are converted from string form.
  • UI usage: Primarily designed for graphical and coordinate-based operations.
Comments

There are no comments on this page.

New comment

Comments are welcome and encouraged, including disagreement and critique. However, this is not a space for abuse. Disagreement is welcome; personal attacks, harassment, or hate will be removed instantly. This site reflects personal opinions, not universal truths. If you can’t distinguish between the two, this probably isn’t the place for you. The system temporarily stores IP addresses and browser user agents for the purposes of spam prevention, moderation, and safeguarding. This data is automatically removed after fourteen days. Your email address is stored so that replies can be sent to your email address.

Comments powered by BalfComment

Feedback 👍
Comments are sent via email to me.