• Home
  • Raw
  • Download

Lines Matching full:into

126                 Self::from_cols(m.x.into(), m.y.into()).transpose()
134 x: mt.x_axis.into(),
135 y: mt.y_axis.into(),
142 Self::from_cols(m.x.into(), m.y.into())
149 x: m.x_axis.into(),
150 y: m.y_axis.into(),
161 Self::from_cols(m.x.into(), m.y.into(), m.z.into()).transpose()
169 x: mt.x_axis.into(),
170 y: mt.y_axis.into(),
171 z: mt.z_axis.into(),
178 Self::from_cols(m.x.into(), m.y.into(), m.z.into())
185 x: m.x_axis.into(),
186 y: m.y_axis.into(),
187 z: m.z_axis.into(),
198 Self::from_cols(m.x.into(), m.y.into(), m.z.into(), m.w.into()).transpose()
206 x: mt.x_axis.into(),
207 y: mt.y_axis.into(),
208 z: mt.z_axis.into(),
209 w: mt.w_axis.into(),
216 Self::from_cols(m.x.into(), m.y.into(), m.z.into(), m.w.into())
223 x: m.x_axis.into(),
224 y: m.y_axis.into(),
225 z: m.z_axis.into(),
226 w: m.w_axis.into(),
275 Self::from_cols(m.x.into(), m.y.into(), m.z.into()).transpose() in from()
283 x: mt.x_axis.into(), in from()
284 y: mt.y_axis.into(), in from()
285 z: mt.z_axis.into(), in from()
292 Self::from_cols(m.x.into(), m.y.into(), m.z.into()) in from()
299 x: m.x_axis.into(), in from()
300 y: m.y_axis.into(), in from()
301 z: m.z_axis.into(), in from()
330 assert_eq!(m, g.into());
342 assert_eq!(m, g.into());
353 assert_eq!(m, g.into());
365 assert_eq!(m, g.into());
378 assert_eq!(m, g.into());
401 assert_eq!(m, g.into());
466 assert_eq!(m, g.into()); in test_point3a()
479 assert_eq!(m, g.into()); in test_vector3a()
486 x: [0.0, 1.0, 2.0].into(), in test_mat3a_col_major()
487 y: [3.0, 4.0, 5.0].into(), in test_mat3a_col_major()
488 z: [6.0, 7.0, 8.0].into(), in test_mat3a_col_major()
491 [0.0, 1.0, 2.0].into(), in test_mat3a_col_major()
492 [3.0, 4.0, 5.0].into(), in test_mat3a_col_major()
493 [6.0, 7.0, 8.0].into(), in test_mat3a_col_major()
495 assert_eq!(expected, m.into()); in test_mat3a_col_major()
496 assert_eq!(m, expected.into()); in test_mat3a_col_major()
503 x: [0.0, 1.0, 2.0].into(), in test_mat3a_row_major()
504 y: [3.0, 4.0, 5.0].into(), in test_mat3a_row_major()
505 z: [6.0, 7.0, 8.0].into(), in test_mat3a_row_major()
508 [0.0, 3.0, 6.0].into(), in test_mat3a_row_major()
509 [1.0, 4.0, 7.0].into(), in test_mat3a_row_major()
510 [2.0, 5.0, 8.0].into(), in test_mat3a_row_major()
512 assert_eq!(expected, m.into()); in test_mat3a_row_major()
513 assert_eq!(m, expected.into()); in test_mat3a_row_major()