Skip to content

Commit 237c5b4

Browse files
committed
graphene: Add some // rustdoc-stripper-ignore-next
1 parent 5d13156 commit 237c5b4

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

graphene/src/matrix.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -246,6 +246,7 @@ impl ops::MulAssign<Matrix> for Matrix {
246246
impl ops::Mul<Vec4> for Matrix {
247247
type Output = Vec4;
248248

249+
// rustdoc-stripper-ignore-next
249250
/// Transforms this `Vec4` using the provided matrix.
250251
/// See [Matrix::transform_vec4].
251252
fn mul(self, rhs: Vec4) -> Self::Output {
@@ -256,6 +257,7 @@ impl ops::Mul<Vec4> for Matrix {
256257
impl ops::Mul<Vec3> for Matrix {
257258
type Output = Vec3;
258259

260+
// rustdoc-stripper-ignore-next
259261
/// Transforms this `Vec3` using the provided matrix.
260262
/// See [Matrix::transform_vec3].
261263
fn mul(self, rhs: Vec3) -> Self::Output {
@@ -274,6 +276,7 @@ impl ops::Mul<Point> for Matrix {
274276
impl ops::Mul<Point3D> for Matrix {
275277
type Output = Point3D;
276278

279+
// rustdoc-stripper-ignore-next
277280
/// Transforms this point using the provided matrix.
278281
/// See [Matrix::transform_point3d].
279282
fn mul(self, rhs: Point3D) -> Self::Output {

0 commit comments

Comments
 (0)