VR-Vantage 3.0 API Documentation
Home
Modules
Namespaces
Classes
Files
Libraries
Examples
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Groups
Pages
include
vrvGraphicsUtils
DtPlane.h
Go to the documentation of this file.
1
/******************************************************************************
2
** Copyright (c) 2017 MAK Technologies, Inc.
3
** All rights reserved.
4
******************************************************************************/
5
9
#pragma once
10
11
namespace
makVrv {
12
13
enum
PlaneSide
14
{
15
NO_SIDE
,
16
POSITIVE_SIDE
,
17
NEGATIVE_SIDE
,
18
BOTH_SIDE
19
};
20
23
template
<
class
T>
24
class
DtPlane
25
{
26
public
:
27
29
DtPlane
();
30
32
virtual
~DtPlane
();
33
34
DtVector3<T>
vNormal
;
35
T
d
;
36
41
PlaneSide
getSide
(
const
DtAxisAlignedBoundingBox<T>
&
box
)
const
;
42
48
PlaneSide
getSide
(
const
DtVector3<T>
& centre,
const
DtVector3<T>
& halfSize)
const
;
49
54
T
getDistance
(
const
DtVector3<T>
& rhs)
const
;
55
};
56
57
}
//namespace makVrv
58
59
#include "
DtPlane.inl
"
Copyright © 2005-2021 MAK Technologies. All Rights Reserved (
www.mak.com
)