Program Listing for File mesh_split_params.hpp

Return to documentation for file (/home/runner/work/Legion-Engine/Legion-Engine/legion/engine/physics/mesh_splitter_utils/mesh_split_params.hpp)

#pragma once

#include <core/core.hpp>

namespace legion::physics
{
    struct MeshSplitParams
    {
        MeshSplitParams(math::vec3 pPlanePosition,math::vec3 pPlaneNormal)
            : planePostion(pPlanePosition), planeNormal(pPlaneNormal)
        {

        }

        math::vec3 planePostion;
        math::vec3 planeNormal;
    };
}