Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
godotengine
GitHub Repository: godotengine/godot
Path: blob/master/thirdparty/jolt_physics/Jolt/Physics/Collision/CastConvexVsTriangles.h
9912 views
1
// Jolt Physics Library (https://github.com/jrouwe/JoltPhysics)
2
// SPDX-FileCopyrightText: 2021 Jorrit Rouwe
3
// SPDX-License-Identifier: MIT
4
5
#pragma once
6
7
#include <Jolt/Physics/Collision/Shape/ConvexShape.h>
8
#include <Jolt/Physics/Collision/ShapeCast.h>
9
10
JPH_NAMESPACE_BEGIN
11
12
/// Collision detection helper that casts a convex object vs one or more triangles
13
class JPH_EXPORT CastConvexVsTriangles
14
{
15
public:
16
/// Constructor
17
/// @param inShapeCast The shape to cast against the triangles and its start and direction
18
/// @param inShapeCastSettings Settings for performing the cast
19
/// @param inScale Local space scale for the shape to cast against (scales relative to its center of mass).
20
/// @param inCenterOfMassTransform2 Is the center of mass transform of shape 2 (excluding scale), this is used to provide a transform to the shape cast result so that local quantities can be transformed into world space.
21
/// @param inSubShapeIDCreator1 Class that tracks the current sub shape ID for the casting shape
22
/// @param ioCollector The collector that receives the results.
23
CastConvexVsTriangles(const ShapeCast &inShapeCast, const ShapeCastSettings &inShapeCastSettings, Vec3Arg inScale, Mat44Arg inCenterOfMassTransform2, const SubShapeIDCreator &inSubShapeIDCreator1, CastShapeCollector &ioCollector);
24
25
/// Cast convex object with a single triangle
26
/// @param inV0 , inV1 , inV2: CCW triangle vertices
27
/// @param inActiveEdges bit 0 = edge v0..v1 is active, bit 1 = edge v1..v2 is active, bit 2 = edge v2..v0 is active
28
/// An active edge is an edge that is not connected to another triangle in such a way that it is impossible to collide with the edge
29
/// @param inSubShapeID2 The sub shape ID for the triangle
30
void Cast(Vec3Arg inV0, Vec3Arg inV1, Vec3Arg inV2, uint8 inActiveEdges, const SubShapeID &inSubShapeID2);
31
32
protected:
33
const ShapeCast & mShapeCast;
34
const ShapeCastSettings & mShapeCastSettings;
35
const Mat44 & mCenterOfMassTransform2;
36
Vec3 mScale;
37
SubShapeIDCreator mSubShapeIDCreator1;
38
CastShapeCollector & mCollector;
39
40
private:
41
ConvexShape::SupportBuffer mSupportBuffer; ///< Buffer that holds the support function of the cast shape
42
const ConvexShape::Support * mSupport = nullptr; ///< Support function of the cast shape
43
float mScaleSign; ///< Sign of the scale, -1 if object is inside out, 1 if not
44
};
45
46
JPH_NAMESPACE_END
47
48