![]() |
Arma Reforger Explorer 1.7.0.54
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
|
Go to the source code of this file.
Functions | |
| void | ShowBoneDebug (IEntity ent, int bone, float scale) |
| Shape | CreateCone (vector pos, vector aroundDir, float coneAngX, float coneAngY, float coneLength, int color, int subdivisions, ShapeFlags flags) |
| Shape | CreateCircle (vector pos, vector aroundDir, float radius, int color, int subdivisions, ShapeFlags flags) |
| Shape | CreateCircleArc (vector pos, vector aroundDir, vector forwardDir, float angMin, float angMax, float radius, int color, int subdivisions, ShapeFlags flags) |
| Shape | CreateCircleSlice (vector pos, vector aroundDir, vector forwardDir, float angMin, float angMax, float radius, int color, int subdivisions, ShapeFlags flags) |
| void | CreateArrowLinkLines (vector from, vector to, vector faceDir, float size, int numArrows, int color, ShapeFlags flags) |
| void | CreateSimpleText (string text, vector mat[4], float size, int color, ShapeFlags flags, array< ref Shape > output=null, float scaleWidth=1, bool doBackground=false, int backgroundColor=0x80000000) |
| void CreateArrowLinkLines | ( | vector | from, |
| vector | to, | ||
| vector | faceDir, | ||
| float | size, | ||
| int | numArrows, | ||
| int | color, | ||
| ShapeFlags | flags ) |
Definition at line 210 of file DebugShapes.c.
| Shape CreateCircle | ( | vector | pos, |
| vector | aroundDir, | ||
| float | radius, | ||
| int | color, | ||
| int | subdivisions, | ||
| ShapeFlags | flags ) |
Definition at line 91 of file DebugShapes.c.
| Shape CreateCircleArc | ( | vector | pos, |
| vector | aroundDir, | ||
| vector | forwardDir, | ||
| float | angMin, | ||
| float | angMax, | ||
| float | radius, | ||
| int | color, | ||
| int | subdivisions, | ||
| ShapeFlags | flags ) |
Definition at line 127 of file DebugShapes.c.
| Shape CreateCircleSlice | ( | vector | pos, |
| vector | aroundDir, | ||
| vector | forwardDir, | ||
| float | angMin, | ||
| float | angMax, | ||
| float | radius, | ||
| int | color, | ||
| int | subdivisions, | ||
| ShapeFlags | flags ) |
if angMin > angMax, a full circle will be drawn - use forwardDir to draw e.g 350deg-10deg arc
| angMin | min angle in degrees |
| angMax | max angle in degrees |
| radius | in metres |
Definition at line 173 of file DebugShapes.c.
| Shape CreateCone | ( | vector | pos, |
| vector | aroundDir, | ||
| float | coneAngX, | ||
| float | coneAngY, | ||
| float | coneLength, | ||
| int | color, | ||
| int | subdivisions, | ||
| ShapeFlags | flags ) |
| [in] | pos | position in worldspace |
| [in] | aroundDir | normalized direction in worldsapce towards the base |
| [in] | coneAngX | angle on its local X axis |
| [in] | coneAngY | angle on its local Y axis |
| [in] | coneLength | length of the sides (not height of the cone - for round base you can use coneLength = coneHeight / Math.Cos(coneAngleInRadians)) |
| [in] | color | |
| [in] | subdivisions | |
| [in] | flags |
Definition at line 38 of file DebugShapes.c.
| void CreateSimpleText | ( | string | text, |
| vector | mat[4], | ||
| float | size, | ||
| int | color, | ||
| ShapeFlags | flags, | ||
| array< ref Shape > | output = null, | ||
| float | scaleWidth = 1, | ||
| bool | doBackground = false, | ||
| int | backgroundColor = 0x80000000 ) |
Definition at line 244 of file DebugShapes.c.
Definition at line 7 of file DebugShapes.c.