File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -246,6 +246,7 @@ impl ops::MulAssign<Matrix> for Matrix {
246
246
impl ops:: Mul < Vec4 > for Matrix {
247
247
type Output = Vec4 ;
248
248
249
+ // rustdoc-stripper-ignore-next
249
250
/// Transforms this `Vec4` using the provided matrix.
250
251
/// See [Matrix::transform_vec4].
251
252
fn mul ( self , rhs : Vec4 ) -> Self :: Output {
@@ -256,6 +257,7 @@ impl ops::Mul<Vec4> for Matrix {
256
257
impl ops:: Mul < Vec3 > for Matrix {
257
258
type Output = Vec3 ;
258
259
260
+ // rustdoc-stripper-ignore-next
259
261
/// Transforms this `Vec3` using the provided matrix.
260
262
/// See [Matrix::transform_vec3].
261
263
fn mul ( self , rhs : Vec3 ) -> Self :: Output {
@@ -274,6 +276,7 @@ impl ops::Mul<Point> for Matrix {
274
276
impl ops:: Mul < Point3D > for Matrix {
275
277
type Output = Point3D ;
276
278
279
+ // rustdoc-stripper-ignore-next
277
280
/// Transforms this point using the provided matrix.
278
281
/// See [Matrix::transform_point3d].
279
282
fn mul ( self , rhs : Point3D ) -> Self :: Output {
You can’t perform that action at this time.
0 commit comments