MCPcopy Create free account

hub / github.com/RobLoach/raylib-cpp / functions

Functions666 in github.com/RobLoach/raylib-cpp

FunctionQuaternion Divide
* Divide quaternion by quaternion */
include/Quaternion.hpp:164
FunctionQuaternion FromAxisAngle
* Get rotation quaternion for an angle and axis * NOTE: Angle must be provided in radians */
include/Quaternion.hpp:241
FunctionQuaternion FromEuler
* Get the quaternion equivalent to Euler angles * NOTE: Rotation order is ZYX */
include/Quaternion.hpp:256
FunctionQuaternion FromMatrix
* Get a quaternion for a given rotation matrix */
include/Quaternion.hpp:226
FunctionQuaternion FromVector3ToVector3
* Calculate quaternion based on the rotation from one vector to another */
include/Quaternion.hpp:219
FunctionQuaternion Identity
* Get identity quaternion */
include/Quaternion.hpp:127
FunctionQuaternion Invert
include/Quaternion.hpp:135
FunctionQuaternion Lerp
include/Quaternion.hpp:185
FunctionQuaternion Multiply
* Multiply quaternion by quaternion */
include/Quaternion.hpp:140
FunctionQuaternion Nlerp
* Calculate normalized linear interpolation between two quaternions */
include/Quaternion.hpp:193
FunctionQuaternion Normalize
include/Quaternion.hpp:133
FunctionQuaternion Scale
* Scale quaternion components by value (multiply) */
include/Quaternion.hpp:159
FunctionQuaternion Slerp
* Calculates spherical linear interpolation between two quaternions */
include/Quaternion.hpp:200
FunctionQuaternion Subtract
* Subtract two quaternions. */
include/Quaternion.hpp:104
FunctionQuaternion Transform
* Transform quaternion given transformation matrix */
include/Quaternion.hpp:271
MethodRay
include/Ray.hpp:14
MethodRayCollision
include/RayCollision.hpp:13
FunctionRaylibAssertChannelWithin
Internal helper: true when two color channels differ by no more than the given tolerance.
tests/raylib-assert.h:107
FunctionRaylibAssertFloatEq
Internal helper: true when two floats are within RAYLIB_ASSERT_EPSILON of each other.
tests/raylib-assert.h:99
FunctionRaylibAssertMeshValid
Internal helper: true when a mesh contains basic CPU-side geometry data.
tests/raylib-assert.h:115
MethodRaylibException
* Construct a runtime exception with the given message. * * @param message The message to provide for the exception. */
include/RaylibException.hpp:20
MethodRectangle
include/Rectangle.hpp:14
FunctionReflect
* Calculate reflected vector to normal */
include/Vector2.hpp:240
FunctionReflect
include/Vector3.hpp:240
FunctionReject
include/Vector3.hpp:230
MethodRenderTexture
include/RenderTexture.hpp:19
MethodRenderTextureUnmanaged
* Default constructor to build an empty RenderTexture. */
include/RenderTextureUnmanaged.hpp:21
FunctionRotate
* Rotate Vector by float in radians */
include/Vector2.hpp:245
FunctionRotateByQuaternion
include/Vector3.hpp:236
MethodRotateX
include/Matrix.hpp:130
MethodRotateXYZ
include/Matrix.hpp:128
MethodRotateY
include/Matrix.hpp:132
MethodRotateZ
include/Matrix.hpp:134
FunctionSaveFileText
* Save text data to file (write) */
include/Functions.hpp:83
FunctionScale
* Scale vector (multiply by value) */
include/Vector2.hpp:166
FunctionScale
* Multiply vector by scalar */
include/Vector3.hpp:148
FunctionScale
* Scale vector components by value (multiply) */
include/Vector4.hpp:188
MethodScale
include/Matrix.hpp:136
MethodSet
include/AutomationEventList.hpp:106
MethodSetBaseFrame
include/AutomationEventList.hpp:108
MethodSetBufferSizeDefault
* Default size for new audio streams. */
include/AudioStreamUnmanaged.hpp:156
MethodSetClipboardText
* Set clipboard text content */
include/Window.hpp:389
MethodSetConfigFlags
* Sets the configuration flags for raylib. * * @param flags The ConfigFlags to apply to the configuration. * * @see ::SetConfigFla
include/Window.hpp:436
FunctionSetCursor
* Sets the current mouse cursor icon. * * @see ::MouseCursor */
include/Mouse.hpp:110
MethodSetDepth
include/RenderTextureUnmanaged.hpp:58
MethodSetExitKey
* Set a custom key to exit program (default is ESC) */
include/Window.hpp:85
MethodSetHeight
* Set the height of the image canvas. * * @see ResizeCanvas */
include/Image.hpp:340
FunctionSetMappings
include/Gamepad.hpp:91
FunctionSetOffset
include/Mouse.hpp:73
FunctionSetScale
include/Mouse.hpp:81
MethodSetTexture
include/RenderTextureUnmanaged.hpp:52
MethodSetTexture
* Set the texture atlas containing the glyphs. */
include/FontUnmanaged.hpp:95
FunctionSetVibration
* Set gamepad vibration for both motors (duration in seconds) */
include/Gamepad.hpp:96
MethodSetWidth
include/Image.hpp:331
FunctionSetX
include/Mouse.hpp:46
FunctionSetY
include/Mouse.hpp:50
MethodShader
include/Shader.hpp:19
MethodShaderUnmanaged
include/ShaderUnmanaged.hpp:17
MethodShowCursor
* Shows cursor */
include/Window.hpp:114
FunctionSkyBlue
include/Color.hpp:232
MethodSound
include/Sound.hpp:23
MethodSoundUnmanaged
* Default constructor, creates an empty Sound. */
include/SoundUnmanaged.hpp:23
MethodSphere
* Generate sphere mesh (standard sphere) */
include/MeshUnmanaged.hpp:78
MethodStartRecording
include/AutomationEventList.hpp:113
MethodStopRecording
include/AutomationEventList.hpp:118
FunctionSubtract
* Subtract two vectors (v1 - v2) */
include/Vector2.hpp:95
FunctionSubtract
* Subtract two vectors. */
include/Vector3.hpp:83
FunctionSubtract
* Subtract two vectors. */
include/Vector4.hpp:115
MethodSubtract
include/Matrix.hpp:120
FunctionTakeScreenshot
* Takes a screenshot of current screen (saved a .png) */
include/Functions.hpp:59
MethodText
* Initializes a new Text object. * * @param text Text to initialize. * @param fontSize The size of the text. * @param color The co
include/Text.hpp:50
MethodText
include/Image.hpp:107
FunctionTextFindIndex
* Find first text occurrence within a string */
include/Functions.hpp:409
FunctionTextIsEqual
* Check if two text string are equal */
include/Functions.hpp:342
FunctionTextToFloat
* Get float value from text */
include/Functions.hpp:458
FunctionTextToInteger
* Get integer value from text (negative values not supported) */
include/Functions.hpp:451
MethodTexture
* Explicitly forbid the copy constructor. */
include/Texture.hpp:21
MethodTextureUnmanaged
* Default texture constructor. */
include/TextureUnmanaged.hpp:26
FunctionTint
* Get color multiplied with another color */
include/Color.hpp:194
FunctionToAxisAngle
* Get the rotation angle and axis for this quaternion */
include/Quaternion.hpp:248
FunctionToEuler
* Get the Euler angles equivalent to quaternion * NOTE: Angles are returned in radians */
include/Quaternion.hpp:264
MethodToFloatV
include/Matrix.hpp:160
FunctionToHSV
* Returns HSV values for a Color */
include/Color.hpp:75
FunctionToMatrix
* Get a matrix for this quaternion */
include/Quaternion.hpp:233
MethodToRectangle
include/Vector4.hpp:55
MethodToString
include/MeshUnmanaged.hpp:143
MethodToString
include/MusicUnmanaged.hpp:63
MethodToString
include/RayCollision.hpp:65
MethodToString
include/WaveUnmanaged.hpp:63
MethodToString
include/BoundingBox.hpp:36
MethodToString
include/ModelUnmanaged.hpp:62
MethodToString
include/ShaderUnmanaged.hpp:60
MethodToString
include/TextureUnmanaged.hpp:89
MethodToString
include/Window.hpp:49
MethodToString
include/Matrix.hpp:84
MethodToString
include/Rectangle.hpp:36
MethodToString
include/RenderTextureUnmanaged.hpp:41
MethodToString
include/SoundUnmanaged.hpp:57
MethodToString
include/Camera3D.hpp:45
MethodToVector4
include/Rectangle.hpp:32
← previousnext →401–500 of 666, ranked by callers