geometry
Utilities for working with geometry in Koto.
The module contains the Vec2
, Vec3
, and
Rect
types.
rect
|| -> Rect
Initializes a default Rect
with each component set to 0
.
|x: Number, y: Number, width: Number, height: Number| -> Rect
|xy: Vec2, size: Vec2| -> Rect
Initializes a Rect
with corresponding position and size.
Example
from geometry import rect, vec2
rect
# -> Rect{x: 0, y: 0, width: 0, height: 0}
rect 10, 20, 30, 40
# -> Rect{x: 10, y: 20, width: 30, height: 40}
rect ,
# -> Rect{x: -1, y: 2, width: 99, height: 100}
vec2
|| -> Vec2
Initializes a default Vec2
with each component set to 0
.
|x: Number| -> Vec2
Initializes a Vec2
with x
specified, and y
set to 0
.
|x: Number, y: Number| -> Vec2
|xy: Vec2| -> Vec2
Initializes a Vec2
with corresponding x
and y
components.
Example
from geometry import vec2
vec2
# -> Vec2{x: 0, y: 0}
vec2 99, 100
# -> Vec2{x: 99, y: 100}
vec3
|| -> Vec3
Initializes a default Vec3
with each component set to 0
.
|x: Number| -> Vec3
Initializes a Vec3
with x
specified, and all other components set to 0
.
|x: Number, y: Number| -> Vec3
|xy: Vec2| -> Vec3
Initializes a Vec3
with x
and y
specified, and z
set to 0
.
|x: Number, y: Number, z: Number| -> Vec3
|xy: Vec2, z: Number| -> Vec3
|xyz: Vec3| -> Vec3
Initializes a Vec3
with specified x
, y
, and z
components.
Example
from geometry import vec2, vec3
vec3
# -> Vec3{x: 0, y: 0, z: 0}
vec3 -1, 3
# -> Vec3{x: -1, y: 3, z: 0}
vec3 10, 20, 30
# -> Vec3{x: 10, y: 20, z: 30}
vec3 , 5
# -> Vec3{x: -1, y: -2, z: 5}
Rect
The Rect
type represents a 2-dimensional rectangle,
with a defined position and size.
The position is interpreted as being at the center of the rectangle.
Comparison operations are available, and the rect's components are iterable.
Example
r = geometry.rect 10, 20, 30, 40
x, y, w, h = r
x, y, w, h
# -> (10.0, 20.0, 30.0, 40.0)
Rect.left
|Rect| -> Number
Returns the position of rectangle's left edge.
Example
# Create a rectangle centered at 0, 0
r = geometry.rect 0, 0, 200, 100
r.left
# -> -100.0
Rect.right
|Rect| -> Number
Returns the position of rectangle's right edge.
Example
# Create a rectangle centered at 0, 0
r = geometry.rect 0, 0, 200, 100
r.right
# -> 100.0
Rect.top
|Rect| -> Number
Returns the position of rectangle's top edge.
Example
# Create a rectangle centered at 0, 0
r = geometry.rect 0, 0, 200, 100
r.top
# -> 50.0
Rect.bottom
|Rect| -> Number
Returns the position of rectangle's bottom edge.
Example
# Create a rectangle centered at 0, 0
r = geometry.rect 0, 0, 200, 100
r.bottom
# -> -50.0
Rect.width
|Rect| -> Number
Returns the width of the rectangle.
Example
r = geometry.rect 0, 0, 200, 100
r.width
# -> 200.0
Rect.height
|Rect| -> Number
Returns the width of the rectangle.
Example
r = geometry.rect 0, 0, 200, 100
r.height
# -> 100.0
Rect.center
|Rect| -> Vec2
Returns the center point of the rectangle.
Example
r = geometry.rect -100, 42, 200, 100
r.center
# -> Vec2{x: -100, y: 42}
Rect.x
|Rect| -> Vec2
Returns the x
component of the rectangle's center point.
Example
r = geometry.rect -100, 42, 200, 100
r.x
# -> -100.0
Rect.y
|Rect| -> Vec2
Returns the y
component of the rectangle's center point.
Example
r = geometry.rect -100, 42, 200, 100
r.y
# -> 42.0
Rect.contains
|Rect, xy: Vec2| -> Vec2
Returns true if the given Vec2
is located within the rectangle's
bounds.
Example
from geometry import rect, vec2
r = rect 0, 0, 200, 200
r.contains vec2 50, 50
# -> true
r.contains vec2 500, 500
# -> false
Rect.set_center
|Rect, x: Number y: Number| -> Rect
|Rect, xy: Vec2| -> Rect
Sets the rect's center position to the given x
and y
coordinates, and
returns the rect.
Example
from geometry import rect, vec2
r = rect 0, 0, 200, 200
r.set_center 10, 10
# -> Rect{x: 10, y: 10, width: 200, height: 200}
r.set_center vec2
# -> Rect{x: 0, y: 0, width: 200, height: 200}
Vec2
The Vec2
type represents a 2-dimensional vector, with x
and y
coordinates.
All operators are implemented, and the vector's coordinates are iterable.
Example
from geometry import vec2
+
# -> Vec2{x: 40, y: 60}
v = vec2 50, 100
v *= vec2 0.5, 2
x, y = v
x, y
# -> (25.0, 200.0)
v -= 50
# -> Vec2{x: -25, y: 150}
Vec2.angle
|Vec2| -> Number
Returns the angle of the vector, expressed in radians.
Example
from geometry import vec2
.angle
# -> 0.0
print ''
# -> 1.571
print ''
# -> 3.142
print ''
# -> -1.571
Vec2.length
|Vec2| -> Number
Returns the length of the vector.
Example
from geometry import vec2
.length
# -> 0.0
.length
# -> 5.0
.length
# -> 5.0
Vec2.x
|Vec2| -> Number
Returns the x
coordinate of the vector.
Example
from geometry import vec2
.x
# -> -1.0
.x
# -> 3.0
Vec2.y
|Vec2| -> Number
Returns the y
coordinate of the vector.
Example
from geometry import vec2
.y
# -> -2.0
.y
# -> 4.0
Vec3
The Vec3
type represents a 3-dimensional vector, with x
, y
, and z
coordinates.
All operators are implemented, and the vector's coordinates are iterable.
Example
from geometry import vec3
+
# -> Vec3{x: 50, y: 70, z: 90}
v = vec3 50, 100, 150
v *= vec3 0.5, 2, -1
x, y, z = v
x, y, z
# -> (25.0, 200.0, -150.0)
Vec3.x
|Vec3| -> Number
Returns the x
coordinate of the vector.
Example
from geometry import vec3
.x
# -> -1.0
Vec3.y
|Vec3| -> Number
Returns the y
coordinate of the vector.
Example
from geometry import vec3
.y
# -> -2.0
Vec3.z
|Vec3| -> Number
Returns the z
coordinate of the vector.
Example
from geometry import vec3
.z
# -> 30.0
Vec3.length
|Vec3| -> Number
Returns the length of the vector.
Example
from geometry import vec3
.length
# -> 10.0
.length
# -> 3.0