Fix find/replace mistake in comments
This commit is contained in:
parent
08748ad78b
commit
688026f49a
1 changed files with 3 additions and 3 deletions
|
@ -77,7 +77,7 @@ pub pure fn Mat2(m00:float, m01:float,
|
||||||
}
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
// Conpub struct Mat2 from column vectors
|
// Construct Mat2 from column vectors
|
||||||
//
|
//
|
||||||
#[inline]
|
#[inline]
|
||||||
pub pure fn Mat2_v(col0: &Vec2, col1: &Vec2) -> Mat2 {
|
pub pure fn Mat2_v(col0: &Vec2, col1: &Vec2) -> Mat2 {
|
||||||
|
@ -244,7 +244,7 @@ pub pure fn Mat3(m00:float, m01:float, m02:float,
|
||||||
}
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
// Conpub struct Mat3 from column vectors
|
// Construct Mat3 from column vectors
|
||||||
//
|
//
|
||||||
#[inline]
|
#[inline]
|
||||||
pub pure fn Mat3_v(col0: &Vec3, col1: &Vec3, col2: &Vec3) -> Mat3 {
|
pub pure fn Mat3_v(col0: &Vec3, col1: &Vec3, col2: &Vec3) -> Mat3 {
|
||||||
|
@ -498,7 +498,7 @@ pub pure fn Mat4(m00:float, m01:float, m02:float, m03:float,
|
||||||
}
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
// Conpub struct Mat4 from column vectors
|
// Construct Mat4 from column vectors
|
||||||
//
|
//
|
||||||
#[inline]
|
#[inline]
|
||||||
pub pure fn Mat4_v(col0: &Vec4, col1: &Vec4, col2: &Vec4, col3: &Vec4) -> Mat4 {
|
pub pure fn Mat4_v(col0: &Vec4, col1: &Vec4, col2: &Vec4, col3: &Vec4) -> Mat4 {
|
||||||
|
|
Loading…
Reference in a new issue