AGX Dynamics 2.42.1.1
Loading...
Searching...
No Matches
Vec4.h
Go to the documentation of this file.
1/*
2Copyright 2007-2025. Algoryx Simulation AB.
3
4All AGX source code, intellectual property, documentation, sample code,
5tutorials, scene files and technical white papers, are copyrighted, proprietary
6and confidential material of Algoryx Simulation AB. You may not download, read,
7store, distribute, publish, copy or otherwise disseminate, use or expose this
8material unless having a written signed agreement with Algoryx Simulation AB, or having been
9advised so by Algoryx Simulation AB for a time limited evaluation, or having purchased a
10valid commercial license from Algoryx Simulation AB.
11
12Algoryx Simulation AB disclaims all responsibilities for loss or damage caused
13from using this software, unless otherwise stated in written agreements with
14Algoryx Simulation AB.
15*/
16
17#ifndef AGX_VEC4_H
18#define AGX_VEC4_H
19
20#include <agx/Vec4Template.h>
21#include <agxData/Type.h>
22
23namespace agx
24{
28
29
35
36
42
43} // end of namespace agx
44
45
47AGX_TYPE_BINDING(agx::Vec4d, "Vec4")
48
49AGX_TYPE_BINDING(agx::Vec4i8 , "Vec4i")
50AGX_TYPE_BINDING(agx::Vec4i16, "Vec4i")
51AGX_TYPE_BINDING(agx::Vec4i32, "Vec4i")
52AGX_TYPE_BINDING(agx::Vec4i64, "Vec4i")
53
54AGX_TYPE_BINDING(agx::Vec4u8 , "Vec4u")
55AGX_TYPE_BINDING(agx::Vec4u16, "Vec4u")
56AGX_TYPE_BINDING(agx::Vec4u32, "Vec4u")
57AGX_TYPE_BINDING(agx::Vec4u64, "Vec4u")
58
59#endif
#define AGX_TYPE_BINDING(_Type, _Name)
Definition: Type.h:179
A class holding 4 dimensional vectors and providing basic arithmetic.
Definition: Vec4Template.h:35
The agx namespace contains the dynamics/math part of the AGX Dynamics API.
Vec4T< UInt16 > Vec4u16
Definition: Vec4.h:39
Vec4T< Real32 > Vec4f
Definition: Vec4.h:26
Vec4T< Int64 > Vec4i64
Definition: Vec4.h:34
Vec4T< UInt > Vec4u
Definition: Vec4.h:37
Vec4T< UInt64 > Vec4u64
Definition: Vec4.h:41
Vec4T< UInt32 > Vec4u32
Definition: Vec4.h:40
Vec4T< Int16 > Vec4i16
Definition: Vec4.h:32
Vec4T< UInt8 > Vec4u8
Definition: Vec4.h:38
Vec4T< Real > Vec4
Definition: Vec4.h:25
Vec4T< Int > Vec4i
Definition: Vec4.h:30
Vec4T< Int8 > Vec4i8
Definition: Vec4.h:31
Vec4T< Real64 > Vec4d
Definition: Vec4.h:27
Vec4T< Int32 > Vec4i32
Definition: Vec4.h:33