glam_det 2.0.0

A simple and fast 3D math library for games and graphics.
Documentation
// Copyright (C) 2020-2025 glam-det authors. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

// Generated from swizzle_impl.rs.tera template. Edit the template, not the generated file.

use crate::{Vec2Swizzles, Vec2x4, Vec3x4, Vec4x4};

impl Vec2Swizzles for Vec2x4 {
    type Vec3 = Vec3x4;

    type Vec4 = Vec4x4;

    #[inline]
    fn xx(self) -> Vec2x4 {
        Vec2x4 {
            x: self.x,
            y: self.x,
        }
    }

    #[inline]
    fn xy(self) -> Vec2x4 {
        Vec2x4 {
            x: self.x,
            y: self.y,
        }
    }

    #[inline]
    fn yx(self) -> Vec2x4 {
        Vec2x4 {
            x: self.y,
            y: self.x,
        }
    }

    #[inline]
    fn yy(self) -> Vec2x4 {
        Vec2x4 {
            x: self.y,
            y: self.y,
        }
    }

    #[inline]
    fn xxx(self) -> Vec3x4 {
        Vec3x4 {
            x: self.x,
            y: self.x,
            z: self.x,
        }
    }

    #[inline]
    fn xxy(self) -> Vec3x4 {
        Vec3x4 {
            x: self.x,
            y: self.x,
            z: self.y,
        }
    }

    #[inline]
    fn xyx(self) -> Vec3x4 {
        Vec3x4 {
            x: self.x,
            y: self.y,
            z: self.x,
        }
    }

    #[inline]
    fn xyy(self) -> Vec3x4 {
        Vec3x4 {
            x: self.x,
            y: self.y,
            z: self.y,
        }
    }

    #[inline]
    fn yxx(self) -> Vec3x4 {
        Vec3x4 {
            x: self.y,
            y: self.x,
            z: self.x,
        }
    }

    #[inline]
    fn yxy(self) -> Vec3x4 {
        Vec3x4 {
            x: self.y,
            y: self.x,
            z: self.y,
        }
    }

    #[inline]
    fn yyx(self) -> Vec3x4 {
        Vec3x4 {
            x: self.y,
            y: self.y,
            z: self.x,
        }
    }

    #[inline]
    fn yyy(self) -> Vec3x4 {
        Vec3x4 {
            x: self.y,
            y: self.y,
            z: self.y,
        }
    }

    #[inline]
    fn xxxx(self) -> Vec4x4 {
        Vec4x4::new(self.x, self.x, self.x, self.x)
    }

    #[inline]
    fn xxxy(self) -> Vec4x4 {
        Vec4x4::new(self.x, self.x, self.x, self.y)
    }

    #[inline]
    fn xxyx(self) -> Vec4x4 {
        Vec4x4::new(self.x, self.x, self.y, self.x)
    }

    #[inline]
    fn xxyy(self) -> Vec4x4 {
        Vec4x4::new(self.x, self.x, self.y, self.y)
    }

    #[inline]
    fn xyxx(self) -> Vec4x4 {
        Vec4x4::new(self.x, self.y, self.x, self.x)
    }

    #[inline]
    fn xyxy(self) -> Vec4x4 {
        Vec4x4::new(self.x, self.y, self.x, self.y)
    }

    #[inline]
    fn xyyx(self) -> Vec4x4 {
        Vec4x4::new(self.x, self.y, self.y, self.x)
    }

    #[inline]
    fn xyyy(self) -> Vec4x4 {
        Vec4x4::new(self.x, self.y, self.y, self.y)
    }

    #[inline]
    fn yxxx(self) -> Vec4x4 {
        Vec4x4::new(self.y, self.x, self.x, self.x)
    }

    #[inline]
    fn yxxy(self) -> Vec4x4 {
        Vec4x4::new(self.y, self.x, self.x, self.y)
    }

    #[inline]
    fn yxyx(self) -> Vec4x4 {
        Vec4x4::new(self.y, self.x, self.y, self.x)
    }

    #[inline]
    fn yxyy(self) -> Vec4x4 {
        Vec4x4::new(self.y, self.x, self.y, self.y)
    }

    #[inline]
    fn yyxx(self) -> Vec4x4 {
        Vec4x4::new(self.y, self.y, self.x, self.x)
    }

    #[inline]
    fn yyxy(self) -> Vec4x4 {
        Vec4x4::new(self.y, self.y, self.x, self.y)
    }

    #[inline]
    fn yyyx(self) -> Vec4x4 {
        Vec4x4::new(self.y, self.y, self.y, self.x)
    }

    #[inline]
    fn yyyy(self) -> Vec4x4 {
        Vec4x4::new(self.y, self.y, self.y, self.y)
    }
}