forked from StrafesNET/strafe-client
Planar64Vec3::new
This commit is contained in:
parent
c37194daf6
commit
f73b4a0c52
@ -589,6 +589,10 @@ impl Planar64Vec3{
|
|||||||
pub const MIN:Self=Planar64Vec3(glam::I64Vec3::MIN);
|
pub const MIN:Self=Planar64Vec3(glam::I64Vec3::MIN);
|
||||||
pub const MAX:Self=Planar64Vec3(glam::I64Vec3::MAX);
|
pub const MAX:Self=Planar64Vec3(glam::I64Vec3::MAX);
|
||||||
#[inline]
|
#[inline]
|
||||||
|
pub const fn new(x:Planar64,y:Planar64,z:Planar64)->Self{
|
||||||
|
Self(glam::i64vec3(x.0,y.0,z.0))
|
||||||
|
}
|
||||||
|
#[inline]
|
||||||
pub const fn int(x:i32,y:i32,z:i32)->Self{
|
pub const fn int(x:i32,y:i32,z:i32)->Self{
|
||||||
Self(glam::i64vec3((x as i64)<<32,(y as i64)<<32,(z as i64)<<32))
|
Self(glam::i64vec3((x as i64)<<32,(y as i64)<<32,(z as i64)<<32))
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user