Name
SPVM::Point - Point
Usage
use Point;
my $point = Point->new;
my $point = Point->new(1, 2);
my $x = $point->x;
my $y = $point->y;
my $point_string = $point->to_string;
Description
Point
is a class for a point.
Interfaces
Point
class has the following interfaces.
Fields
x
has x : ro int;
x
.
y
has y : ro int;
y
.
Class Methods
new
static method new : Point ($x : int = 0, $y : int = 0);
Create a new Point
object with $x and $y.
Instance Methods
init
protected method init : Point ($x : int = 0, $y : int = 0)
clear
method clear : void ();
clone
method clone : Point ();
Creates a new Point
object that clones myself.
to_string
method to_string : string ();
Stringifies Point
object as the following format.
(1,2)
Copyright & License
Copyright (c) 2023 Yuki Kimoto
MIT License