Type Alias Point

Source
pub type Point = Vec2;
Expand description

A Point is an alias to Vec2.

Aliased Type§

#[repr(C)]
pub struct Point { pub data: ArrayStorage<f32, 2, 1>, /* private fields */ }

Fields§

§data: ArrayStorage<f32, 2, 1>

The data storage that contains all the matrix components. Disappointed?

Well, if you came here to see how you can access the matrix components, you may be in luck: you can access the individual components of all vectors with compile-time dimensions <= 6 using field notation like this: vec.x, vec.y, vec.z, vec.w, vec.a, vec.b. Reference and assignation work too:

let mut vec = Vector3::new(1.0, 2.0, 3.0);
vec.x = 10.0;
vec.y += 30.0;
assert_eq!(vec.x, 10.0);
assert_eq!(vec.y + 100.0, 132.0);

Similarly, for matrices with compile-time dimensions <= 6, you can use field notation like this: mat.m11, mat.m42, etc. The first digit identifies the row to address and the second digit identifies the column to address. So mat.m13 identifies the component at the first row and third column (note that the count of rows and columns start at 1 instead of 0 here. This is so we match the mathematical notation).

For all matrices and vectors, independently from their size, individual components can be accessed and modified using indexing: vec[20], mat[(20, 19)]. Here the indexing starts at 0 as you would expect.

Trait Implementations§

Source§

impl Collide<AABB> for Point

Point and AABB Collison

Source§

fn collide_with(&self, _other: &AABB) -> bool

Checks if two Colliders intersect. Read more
Source§

impl Collide<Circle> for Point

Point and Circle Collison

Source§

fn collide_with(&self, _other: &Circle) -> bool

Checks if two Colliders intersect. Read more
Source§

impl Collide<Matrix<f32, Const<2>, Const<1>, ArrayStorage<f32, 2, 1>>> for Point

Point and Point Collsion

Source§

fn collide_with(&self, _other: &Point) -> bool

Checks if two Colliders intersect. Read more
Source§

impl Collider for Point

Source§

fn get_bounding_box(&self) -> AABB

Get a bounding box for a Point, using POINT_BOUNDING_SIZE as its size

Source§

fn get_center(&self) -> Point

Get the center of the Point Collider