diff --git a/doc/bu/files/abs.txt b/doc/bu/files/abs.txt deleted file mode 100644 index 2e9aecd..0000000 --- a/doc/bu/files/abs.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title Abs [RCBasic Doc] -#header function Abs(n) - -Returns the absolute value of n diff --git a/doc/bu/files/accelname.txt b/doc/bu/files/accelname.txt deleted file mode 100644 index 9acdb1e..0000000 --- a/doc/bu/files/accelname.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title AccelName$ [RCBasic Doc] -#header function AccelName$(accel_num) - - -Returns the name of an accelerometer - diff --git a/doc/bu/files/acos.txt b/doc/bu/files/acos.txt deleted file mode 100644 index 0553ead..0000000 --- a/doc/bu/files/acos.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title Acos [RCBasic Doc] -#header function Acos(n) - -Returns the Arcosine of n diff --git a/doc/bu/files/activecanvas.txt b/doc/bu/files/activecanvas.txt deleted file mode 100644 index 11e416b..0000000 --- a/doc/bu/files/activecanvas.txt +++ /dev/null @@ -1,22 +0,0 @@ -#title ActiveCanvas [RCBasic Doc] -#header function ActiveCanvas() - - -Returns the canvas that drawing commands are currently applied to - -#code -c1 = OpenCanvas(640, 480, 0, 0, 640, 480, 0) -c2 = OpenCanvas(640, 480, 0, 0, 640, 480, 0) - -Canvas(c1) - -If ActiveCanvas() = c1 Then - Print "Active canvas is c1" -End If - -Canvas(c2) - -If ActiveCanvas() = c2 Then - Print "Active canvas is now c2" -End If -#/code diff --git a/doc/bu/files/actoranimationislooped.txt b/doc/bu/files/actoranimationislooped.txt deleted file mode 100644 index b583e76..0000000 --- a/doc/bu/files/actoranimationislooped.txt +++ /dev/null @@ -1,8 +0,0 @@ -#title actorAnimationIsLooped [RCBasic Doc] -#header function actorAnimationIsLooped( actor ) - -Returns true if an actors animation is set to looped. - -Note: Actor animation is set to looped with the loopActorAnimation() function. - -#ref loopActorAnimation diff --git a/doc/bu/files/actorisintransition.txt b/doc/bu/files/actorisintransition.txt deleted file mode 100644 index 6839ff7..0000000 --- a/doc/bu/files/actorisintransition.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title ActorIsInTransition [RCBasic Doc] -#header function ActorIsInTransition( actor ) - -Returns true if actor is in a transition from its current frame to the frame set in the StartActorTransition() function - -#ref StartActorTransition StopActorTransition GetActorTransitionTime diff --git a/doc/bu/files/actorissolid.txt b/doc/bu/files/actorissolid.txt deleted file mode 100644 index 8233454..0000000 --- a/doc/bu/files/actorissolid.txt +++ /dev/null @@ -1,15 +0,0 @@ -#title ActorIsSolid [RCBasic Doc] -#header function ActorIsSolid(actor) - -Returns true or false depending on if physics and collision response applies to an actor. - -Note: Collision is still able to be checked on an actor but the actor will be like a ghost able to go through wall and other objects. - -#code -SetActorSolid(actor, true) -Print "Actor solid state: "; ActorIsSolid(actor) 'This will output 1 -SetActorSolid(actor, false) -Print "Actor solid state: "; ActorIsSolid(actor) 'This will output 0 -#/end - -#ref SetActorSolid diff --git a/doc/bu/files/actorisvisible.txt b/doc/bu/files/actorisvisible.txt deleted file mode 100644 index 3b85c29..0000000 --- a/doc/bu/files/actorisvisible.txt +++ /dev/null @@ -1,13 +0,0 @@ -#title ActorIsVisible [RCBasic Doc] -#header function ActorIsVisible( actor ) - -Returns true if an actor is visible - -#code -SetActorVisible(actor, true) -Print "Actor solid state: "; ActorIsVisible(actor) 'Outputs 1 -SetActorSolid(actor, false) -Print "Actor solid state: "; ActorIsSolid(actor) 'Outputs 0 -#/code - -#ref SetActorVisible diff --git a/doc/bu/files/addactorshadow.txt b/doc/bu/files/addactorshadow.txt deleted file mode 100644 index 4680595..0000000 --- a/doc/bu/files/addactorshadow.txt +++ /dev/null @@ -1,9 +0,0 @@ -#title AddActorShadow [RCBasic Doc] -#header sub AddActorShadow( actor ) - -Cast a shadow on an actor during lighting calculations - -Note: Also check the section on lights for more info - - -#ref RemoveActorShadow diff --git a/doc/bu/files/addmatrix.txt b/doc/bu/files/addmatrix.txt deleted file mode 100644 index dd6365e..0000000 --- a/doc/bu/files/addmatrix.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title AddMatrix [RCBasic Doc] -#header function AddMatrix(mA, mB, mC) - -Adds matrix mA to matrix mB and stores the results in mC diff --git a/doc/bu/files/addmeshbuffer.txt b/doc/bu/files/addmeshbuffer.txt deleted file mode 100644 index c9f8296..0000000 --- a/doc/bu/files/addmeshbuffer.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title AddMeshBuffer [RCBasic Doc] -#header sub AddMeshBuffer( mesh, vertex_count, ByRef vertex_data, ByRef normal_data, ByRef uv_data, index_count, ByRef index_data ) - -Sets the vertices, normals, and texture coordinates for a mesh - -#ref CreateMesh diff --git a/doc/bu/files/addsceneskybox.txt b/doc/bu/files/addsceneskybox.txt deleted file mode 100644 index dcb6afd..0000000 --- a/doc/bu/files/addsceneskybox.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title AddSceneSkyBox [RCBasic Doc] -#header sub AddSceneSkyBox( img_top, img_bottom, img_left, img_right, img_front, img_back) - -Generates a skybox based on the provided images. - -#ref AddSceneSkyDome AddSceneSkyDomeEx diff --git a/doc/bu/files/addsceneskydome.txt b/doc/bu/files/addsceneskydome.txt deleted file mode 100644 index 7f29b40..0000000 --- a/doc/bu/files/addsceneskydome.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title AddSceneSkyDome [RCBasic Doc] -#header sub AddSceneSkyDome( img ) - -Adds a sky dome to the scene - -#ref AddSceneSkyDomeEx diff --git a/doc/bu/files/addsceneskydomeex.txt b/doc/bu/files/addsceneskydomeex.txt deleted file mode 100644 index 170e06c..0000000 --- a/doc/bu/files/addsceneskydomeex.txt +++ /dev/null @@ -1,15 +0,0 @@ -#title AddSceneSkyDomeEx [RCBasic Doc] -#header sub AddSceneSkyDomeEx( img, horiRes, vertRes, txPercentage, spherePercentage, radius) - -Adds a sky dome to the scene - -#list -#li img - The texture for the sky dome -#li horiRes - Number of vertices of a horizontal layer of the sphere. -#li vertRes - Number of vertices of a vertical layer of the sphere. -#li txPercentage - How much of the height of the texture is used. Should be between 0 and 1. -#li spherePercentage - How much of the sphere is drawn. Value should be between 0 and 2, where 1 is an exact half-sphere and 2 is a full sphere. -#li radius - The Radius of the sphere -#/list - -#ref AddSceneSkyBox AddSceneSkyDome diff --git a/doc/bu/files/adjointmatrix.txt b/doc/bu/files/adjointmatrix.txt deleted file mode 100644 index 1291a51..0000000 --- a/doc/bu/files/adjointmatrix.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title AdjointMatrix [RCBasic Doc] -#header function AdjointMatrix(mA, mB) - -Stores the adjoint matrix of mA in mB diff --git a/doc/bu/files/andbit.txt b/doc/bu/files/andbit.txt deleted file mode 100644 index bd9085d..0000000 --- a/doc/bu/files/andbit.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title AndBit [RCBasic Doc] -#header function AndBit(a,b) - -Returns the bitwise AND operation of 2 numbers diff --git a/doc/bu/files/android_getexternalstoragepath.txt b/doc/bu/files/android_getexternalstoragepath.txt deleted file mode 100644 index 7ea51de..0000000 --- a/doc/bu/files/android_getexternalstoragepath.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title Android_GetExternalStoragePath$ [RCBasic Doc] -#header function Android_GetExternalStoragePath$() - -Returns the designated external storage path - -#ref Android_GetExternalStorageState Android_GetInternalStoragePath$ diff --git a/doc/bu/files/android_getexternalstoragestate.txt b/doc/bu/files/android_getexternalstoragestate.txt deleted file mode 100644 index 2b31fa4..0000000 --- a/doc/bu/files/android_getexternalstoragestate.txt +++ /dev/null @@ -1,16 +0,0 @@ -#title Android_GetExternalStorageState [RCBasic Doc] -#header function Android_GetExternalStorageState() - -Returns a bitmask of these values: -#list -#li ANDROID_EXTERNAL_STORAGE_READ -#li ANDROID_EXTERNAL_STORAGE_WRITE -#/list - -#code -If AndBit( Android_GetExternalStorageState(), ANDROID_EXTERNAL_STORAGE_READ ) Then - Print "Can read from external storage" -End If -#/code - -#ref Android_GetExternalStoragePath$ Android_GetInternalStoragePath$ diff --git a/doc/bu/files/android_getinternalstoragepath.txt b/doc/bu/files/android_getinternalstoragepath.txt deleted file mode 100644 index abeb531..0000000 --- a/doc/bu/files/android_getinternalstoragepath.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title Android_GetInternalStoragePath$ [RCBasic Doc] -#header function Android_GetInternalStoragePath$() - -Returns the internal storage path - -#ref Android_GetExternalStorageState Android_GetExternalStoragePath$ diff --git a/doc/bu/files/android_jni_message.txt b/doc/bu/files/android_jni_message.txt deleted file mode 100644 index f44ab82..0000000 --- a/doc/bu/files/android_jni_message.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title Android_JNI_Message$ [RCBasic Doc] -#header function Android_JNI_Message$(arg$) - -Passes arg$ to the rcbasic_android_interface() method in the java code for your android app. The java method returns a string. - -#ref Runtime_Utility_Message$ diff --git a/doc/bu/files/applyactorcentralforcelocal.txt b/doc/bu/files/applyactorcentralforcelocal.txt deleted file mode 100644 index 94abf73..0000000 --- a/doc/bu/files/applyactorcentralforcelocal.txt +++ /dev/null @@ -1,10 +0,0 @@ -#title ApplyActorCentralForceLocal [RCBasic Doc] -#header sub ApplyActorCentralForceLocal( actor, x, y, z) - -Applies a force to the center of mass of an actor in local coordinate space. This force impacts the linear velocity of the object without affecting its rotation. - -#list -#li x,y,z - direction of the force -#/list - -#ref ApplyActorCentralForceWorld ApplyActorCentralImpulseLocal ApplyActorCentralImpulseWorld diff --git a/doc/bu/files/applyactorcentralforceworld.txt b/doc/bu/files/applyactorcentralforceworld.txt deleted file mode 100644 index 30d917a..0000000 --- a/doc/bu/files/applyactorcentralforceworld.txt +++ /dev/null @@ -1,10 +0,0 @@ -#title ApplyActorCentralForceWorld [RCBasic Doc] -#header sub ApplyActorCentralForceWorld( actor, x, y, z) - -Applies a force to the center of mass of an actor in world coordinate space. This force impacts the linear velocity of the object without affecting its rotation. - -#list -#li x,y,z - direction of the force -#/list - -#ref ApplyActorCentralForceLocal ApplyActorCentralImpulseLocal ApplyActorCentralImpulseWorld diff --git a/doc/bu/files/applyactorcentralimpulselocal.txt b/doc/bu/files/applyactorcentralimpulselocal.txt deleted file mode 100644 index 8c992f1..0000000 --- a/doc/bu/files/applyactorcentralimpulselocal.txt +++ /dev/null @@ -1,10 +0,0 @@ -#title ApplyActorCentralImpulseLocal [RCBasic Doc] -#header sub ApplyActorCentralImpulseLocal( actor, x, y, z) - -Applies an impulse directly to the center of mass of an actor. An impulse differs from a continuous force in that it applies an immediate, short-duration change to the velocity of the actor. It affects the linear velocity but does not generate rotational effects (since it's applied to the center of mass). - -#list -#li x,y,z - direction of the impulse -#/list - -#ref ApplyActorCentralForceLocal ApplyActorCentralForceWorld ApplyActorCentralImpulseWorld diff --git a/doc/bu/files/applyactorcentralimpulseworld.txt b/doc/bu/files/applyactorcentralimpulseworld.txt deleted file mode 100644 index 388714d..0000000 --- a/doc/bu/files/applyactorcentralimpulseworld.txt +++ /dev/null @@ -1,11 +0,0 @@ -#title ApplyActorCentralImpulseWorld [RCBasic Doc] -#header sub ApplyActorCentralImpulseWorld( actor, x, y, z) - -Applies an impulse directly to the center of mass of an actor. An impulse differs from a continuous force in that it applies an immediate, short-duration change to the velocity of the actor. It affects the linear velocity but does not generate rotational effects (since it's applied to the center of mass). - -#list -#li x,y,z - direction of the impulse -#/list - -#ref ApplyActorCentralForceLocal ApplyActorCentralForceWorld ApplyActorCentralImpulseLocal - diff --git a/doc/bu/files/applyactordamping.txt b/doc/bu/files/applyactordamping.txt deleted file mode 100644 index 525881c..0000000 --- a/doc/bu/files/applyactordamping.txt +++ /dev/null @@ -1,22 +0,0 @@ -#title ApplyActorDamping [RCBasic Doc] -#header sub ApplyActorDamping( actor, timeStep) - -Reduces the velocity of an actor over time, simulating the effect of friction or air resistance. - -This function applies the linear and angular damping values set with the SetActorDamping() function. - -#code -init_damping = False -SetActorDamping(actor, 0.1, 0.5) -ApplyActorCentralImpulse(actor, 300, 0, 0) - -While True - If Not init_damping Then - ApplyActorDamping(actor, 5.0) 'Will apply the damping effect for 5 seconds - init_damping = True - End If - Update() -Wend -#/code - -#ref setActorDamping getActorLinearDamping getActorAngularDamping diff --git a/doc/bu/files/applyactorforcelocal.txt b/doc/bu/files/applyactorforcelocal.txt deleted file mode 100644 index a7e104f..0000000 --- a/doc/bu/files/applyactorforcelocal.txt +++ /dev/null @@ -1,11 +0,0 @@ -#title ApplyActorForceLocal [RCBasic Doc] -#header sub ApplyActorForceLocal( actor, x, y, z, rel_x, rel_y, rel_z) - -Applies a force to an actor at a specific point. Unlike ApplyActorCentralForce(local/world), which applies force only at the center of mass (affecting linear velocity), this can generate both linear motion and rotation (torque), depending on where the force is applied relative to the center of mass. - -#list -#li x,y,z - direction of the force -#li rel_x, rel_y, rel_z - position to apply the force to relative to the center of mass -#/list - -#ref ApplyActorForceWorld ApplyActorCentralForceLocal ApplyActorCentralForceWorld diff --git a/doc/bu/files/applyactorforceworld.txt b/doc/bu/files/applyactorforceworld.txt deleted file mode 100644 index 65462be..0000000 --- a/doc/bu/files/applyactorforceworld.txt +++ /dev/null @@ -1,11 +0,0 @@ -#title ApplyActorForceWorld [RCBasic Doc] -#header sub ApplyActorForceWorld( actor, x, y, z, rel_x, rel_y, rel_z) - -Applies a force to an actor at a specific point. Unlike ApplyActorCentralForce(local/world), which applies force only at the center of mass (affecting linear velocity), this can generate both linear motion and rotation (torque), depending on where the force is applied relative to the center of mass. - -#list -#li x,y,z - direction of the force -#li rel_x, rel_y, rel_z - position to apply the force to relative to the center of mass -#/list - -#ref ApplyActorForceLocal ApplyActorCentralForceLocal ApplyActorCentralForceWorld diff --git a/doc/bu/files/applyactorimpulselocal.txt b/doc/bu/files/applyactorimpulselocal.txt deleted file mode 100644 index 03e8898..0000000 --- a/doc/bu/files/applyactorimpulselocal.txt +++ /dev/null @@ -1,12 +0,0 @@ -#title ApplyActorImpulseLocal [RCBasic Doc] -#header sub ApplyActorImpulseLocal( actor, x, y, z, rel_x, rel_y, rel_z) - -Applies an impulse to an actor at a specific point. Unlike ApplyActorCentralImpulse(local/world), which applies impulse only at the center of mass (affecting linear velocity), this can generate both linear motion and rotation (torque), depending on where the force is applied relative to the center of mass. - -#list -#li x,y,z - direction of the impulse -#li rel_x, rel_y, rel_z - position to apply the force to relative to the center of mass -#/list - -#ref ApplyActorImpulseWorld ApplyActorForceLocal ApplyActorForceWorld - diff --git a/doc/bu/files/applyactorimpulseworld.txt b/doc/bu/files/applyactorimpulseworld.txt deleted file mode 100644 index 8ab74b3..0000000 --- a/doc/bu/files/applyactorimpulseworld.txt +++ /dev/null @@ -1,11 +0,0 @@ -#title applyActorImpulseWorld [RCBasic Doc] -#header sub applyActorImpulseWorld( actor, x, y, z, rel_x, rel_y, rel_z) - -Applies an impulse to an actor at a specific point. Unlike ApplyActorCentralImpulse(local/world), which applies impulse only at the center of mass (affecting linear velocity), this can generate both linear motion and rotation (torque), depending on where the force is applied relative to the center of mass. - -#list -#li x,y,z - direction of the impulse -#li rel_x, rel_y, rel_z - position to apply the force to relative to the center of mass -#/list - -#ref ApplyActorImpulseLocal ApplyActorForceLocal ApplyActorForceWorld diff --git a/doc/bu/files/applyactortorqueimpulselocal.txt b/doc/bu/files/applyactortorqueimpulselocal.txt deleted file mode 100644 index 819c097..0000000 --- a/doc/bu/files/applyactortorqueimpulselocal.txt +++ /dev/null @@ -1,10 +0,0 @@ -#title applyActorTorqueImpulseLocal [RCBasic Doc] -#header sub applyActorTorqueImpulseLocal( actor, x, y, z) - -Applies an impulse that directly affects the angular velocity of an actor, causing it to rotate. This is similar to applying an impulse, but instead of changing the linear velocity (which applyActorCentralImpulse does), it alters the body's rotational motion (angular velocity) instantaneously. - -#list ul -#li x, y, z - Direction of rotation -#/list - -#ref ApplyActorTorque ApplyActorTorqueImpulseWorld diff --git a/doc/bu/files/applyactortorqueimpulseworld.txt b/doc/bu/files/applyactortorqueimpulseworld.txt deleted file mode 100644 index d6d4ede..0000000 --- a/doc/bu/files/applyactortorqueimpulseworld.txt +++ /dev/null @@ -1,10 +0,0 @@ -#title applyActorTorqueImpulseWorld [RCBasic Doc] -#header sub applyActorTorqueImpulseWorld( actor, x, y, z) - -Applies an impulse that directly affects the angular velocity of an actor, causing it to rotate. This is similar to applying an impulse, but instead of changing the linear velocity (which applyActorCentralImpulse does), it alters the body's rotational motion (angular velocity) instantaneously. - -#list ul -#li x, y, z - Direction of rotation -#/list - -#ref ApplyActorTorque ApplyActorTorqueImpulseLocal diff --git a/doc/bu/files/applyactortorquelocal.txt b/doc/bu/files/applyactortorquelocal.txt deleted file mode 100644 index c931a18..0000000 --- a/doc/bu/files/applyactortorquelocal.txt +++ /dev/null @@ -1,10 +0,0 @@ -#title applyActorTorqueLocal [RCBasic Doc] -#header sub applyActorTorqueLocal( actor, x, y, z) - -Applies a continuous torque to an actor, causing it to accelerate its rotational motion over time. Unlike applyActorTorqueImpulse, which causes an immediate change in angular velocity, this applies a torque force gradually, leading to a continuous rotational effect, similar to applying a force to linear motion. - -#list -#li x, y, z - direction of rotation -#/list - -#ref ApplyActorTorqueWorld ApplyActorTorqueImpulseLocal ApplyActorTorqueImpulseWorld diff --git a/doc/bu/files/applyactortorqueworld.txt b/doc/bu/files/applyactortorqueworld.txt deleted file mode 100644 index 5dd6b8c..0000000 --- a/doc/bu/files/applyactortorqueworld.txt +++ /dev/null @@ -1,11 +0,0 @@ -#title applyActorTorqueWorld [RCBasic Doc] -#header sub applyActorTorqueWorld( actor, x, y, z) - -Applies a continuous torque to an actor, causing it to accelerate its rotational motion over time. Unlike applyActorTorqueImpulse, which causes an immediate change in angular velocity, this applies a torque force gradually, leading to a continuous rotational effect, similar to applying a force to linear motion. - -#list -#li x, y, z - direction of rotation -#/list - -#ref ApplyActorTorqueLocal ApplyActorTorqueImpulseLocal ApplyActorTorqueImpulseWorld - diff --git a/doc/bu/files/arraycopy.txt b/doc/bu/files/arraycopy.txt deleted file mode 100644 index 9e28c4a..0000000 --- a/doc/bu/files/arraycopy.txt +++ /dev/null @@ -1,8 +0,0 @@ -#title ArrayCopy [RCBasic Doc] -#header sub ArrayCopy(ByRef src, ByRef dst) - -Copies the contents of src array to dst array - -Note: This function is a special case in that it can take any type for src or dst - -#ref ArrayDim ArraySize ArrayFill diff --git a/doc/bu/files/arraydim.txt b/doc/bu/files/arraydim.txt deleted file mode 100644 index 4cba66b..0000000 --- a/doc/bu/files/arraydim.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title ArrayDim [RCBasic Doc] -#header function ArrayDim(Byref id) - -Returns the number of dimensions in an array - -#ref ArrayCopy ArrayFill ArraySize diff --git a/doc/bu/files/arrayfill.txt b/doc/bu/files/arrayfill.txt deleted file mode 100644 index 254fd76..0000000 --- a/doc/bu/files/arrayfill.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title ArrayFill [RCBasic Doc] -#header sub ArrayFill(ByRef src, fdata) - -Fills all the elements in an array with the value in fdata - -#ref ArrayCopy ArrayDim ArraySize diff --git a/doc/bu/files/arraysize.txt b/doc/bu/files/arraysize.txt deleted file mode 100644 index d4ca82d..0000000 --- a/doc/bu/files/arraysize.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title ArraySize [RCBasic Doc] -#header function ArraySize(Byref id, array_dim) - -Returns the number of elements in the given dimension of an array - -#ref ArrayDim ArrayCopy ArrayFill diff --git a/doc/bu/files/asc.txt b/doc/bu/files/asc.txt deleted file mode 100644 index 84a418d..0000000 --- a/doc/bu/files/asc.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title Asc [RCBasic Doc] -#header function Asc(c$) - -Returns the ASCII value of a character. diff --git a/doc/bu/files/asin.txt b/doc/bu/files/asin.txt deleted file mode 100644 index fb1fe18..0000000 --- a/doc/bu/files/asin.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title Asin [RCBasic Doc] -#header function Asin(n) - -Returns the ArcSine of a number. diff --git a/doc/bu/files/atan.txt b/doc/bu/files/atan.txt deleted file mode 100644 index d1761ed..0000000 --- a/doc/bu/files/atan.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title Atan [RCBasic Doc] -#header function Atan(n) - -Returns the ArcTangent of a number. diff --git a/doc/bu/files/atan2.txt b/doc/bu/files/atan2.txt deleted file mode 100644 index fd37713..0000000 --- a/doc/bu/files/atan2.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title ATan2 [RCBasic Doc] -#header Function ATan2(y, x) - -Returns the ArcTangent of x and y diff --git a/doc/bu/files/augmentmatrix.txt b/doc/bu/files/augmentmatrix.txt deleted file mode 100644 index 2a0e4c5..0000000 --- a/doc/bu/files/augmentmatrix.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title AugmentMatrix [RCBasic Doc] -#header function AugmentMatrix(mA, mB, mC) - -Appends the columns of matrix mB onto matrix mA and stores the result in mC. - -NOTE: Must mA and mB must be the same number of rows. diff --git a/doc/bu/files/bin.txt b/doc/bu/files/bin.txt deleted file mode 100644 index 7b40444..0000000 --- a/doc/bu/files/bin.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title Bin$ [RCBasic Doc] -#header function Bin$(n) - -Returns the binary representation of a number. diff --git a/doc/bu/files/bufferfromimage.txt b/doc/bu/files/bufferfromimage.txt deleted file mode 100644 index 02a4cd2..0000000 --- a/doc/bu/files/bufferfromimage.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title BufferFromImage [RCBasic Doc] -#header sub BufferFromImage(slot, byref buffer) - - diff --git a/doc/bu/files/bufferfrommatrix.txt b/doc/bu/files/bufferfrommatrix.txt deleted file mode 100644 index fbadd93..0000000 --- a/doc/bu/files/bufferfrommatrix.txt +++ /dev/null @@ -1,8 +0,0 @@ -#title BufferFromMatrix [RCBasic Doc] -#header sub BufferFromMatrix(ByRef buffer, mA) - -Saves the matrix mA in an array - -NOTE: buffer must have the same number of dimensions as the desired matrix for the structure to remain intact. - -#ref MatrixFromBuffer diff --git a/doc/bu/files/bufferfromstring.txt b/doc/bu/files/bufferfromstring.txt deleted file mode 100644 index f249035..0000000 --- a/doc/bu/files/bufferfromstring.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title BufferFromString [RCBasic Doc] -#header function BufferFromString(s$, ByRef buffer) - -Stores the byte value of a string into a number buffer - -#ref StringFromBuffer$ diff --git a/doc/bu/files/canvas.txt b/doc/bu/files/canvas.txt deleted file mode 100644 index 49cd21d..0000000 --- a/doc/bu/files/canvas.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title Canvas [RCBasic Doc] -#header sub Canvas(c_num) - -Sets the active canvas for drawing commands to use - -#ref ActiveCanvas diff --git a/doc/bu/files/canvasclip.txt b/doc/bu/files/canvasclip.txt deleted file mode 100644 index 7391245..0000000 --- a/doc/bu/files/canvasclip.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title CanvasClip [RCBasic Doc] -#header function CanvasClip(x, y, w, h) - -Returns an image id with a selected portion of the active drawing canvas saved - -#ref WindowClip diff --git a/doc/bu/files/canvasisvisible.txt b/doc/bu/files/canvasisvisible.txt deleted file mode 100644 index 8e4c4e4..0000000 --- a/doc/bu/files/canvasisvisible.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title CanvasIsVisible [RCBasic Doc] -#header function CanvasIsVisible(c_num) - -Returns true if a canvas is shown in the Window - -#ref SetCanvasVisible diff --git a/doc/bu/files/changedir.txt b/doc/bu/files/changedir.txt deleted file mode 100644 index 4b894a5..0000000 --- a/doc/bu/files/changedir.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title ChangeDir [RCBasic Doc] -#header sub ChangeDir(p$) - -Sets the working directory that the directory commands use diff --git a/doc/bu/files/channelispaused.txt b/doc/bu/files/channelispaused.txt deleted file mode 100644 index 39ea742..0000000 --- a/doc/bu/files/channelispaused.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title ChannelIsPaused [RCBasic Doc] -#header function ChannelIsPaused(channel) - -Returns true if an audio channel is currently paused - -#ref PauseSound diff --git a/doc/bu/files/channelisplaying.txt b/doc/bu/files/channelisplaying.txt deleted file mode 100644 index 73fdfc7..0000000 --- a/doc/bu/files/channelisplaying.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title ChannelIsPlaying [RCBasic Doc] -#header function ChannelIsPlaying(channel) - -Returns true if an audio channel is playing - -#ref ChannelIsPaused PlaySound PlaySoundTimed diff --git a/doc/bu/files/checksockets.txt b/doc/bu/files/checksockets.txt deleted file mode 100644 index efdfd03..0000000 --- a/doc/bu/files/checksockets.txt +++ /dev/null @@ -1,7 +0,0 @@ -#title CheckSockets [RCBasic Doc] -#header function CheckSockets(timeout_ms) - -Checks all connected sockets for activity. If timeout_ms is greater than 0 than it will wait that many milliseconds. If less than 0 -it will wait for over 49 days (hint: there is no reason what so ever to set this less than 0). - -Returns the number of sockets that have activity (ie. a connection was made or data was sent) diff --git a/doc/bu/files/chr.txt b/doc/bu/files/chr.txt deleted file mode 100644 index 81ec84c..0000000 --- a/doc/bu/files/chr.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title Chr$ [RCBasic Doc] -#header function Chr$(n) - -Returns the character with the matching ASCII value n. diff --git a/doc/bu/files/cint32.txt b/doc/bu/files/cint32.txt deleted file mode 100644 index f70a19b..0000000 --- a/doc/bu/files/cint32.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title CInt32 [RCBasic Doc] -#header function CInt32(i) - -Returns a 32-bit signed integer. diff --git a/doc/bu/files/cint64.txt b/doc/bu/files/cint64.txt deleted file mode 100644 index 63e5915..0000000 --- a/doc/bu/files/cint64.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title CInt64 [RCBasic Doc] -#header function CInt64(i) - -Returns a 64-bit signed integer. diff --git a/doc/bu/files/circle.txt b/doc/bu/files/circle.txt deleted file mode 100644 index 65abcfe..0000000 --- a/doc/bu/files/circle.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title Circle [RCBasic Doc] -#header sub Circle(x,y,radius) - -Draws a circle on the current canvas. diff --git a/doc/bu/files/circlefill.txt b/doc/bu/files/circlefill.txt deleted file mode 100644 index 88e6ff3..0000000 --- a/doc/bu/files/circlefill.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title CircleFill [RCBasic Doc] -#header sub CircleFill(x,y,radius) - -Draws a filled circle on the current canvas. diff --git a/doc/bu/files/clearactorforces.txt b/doc/bu/files/clearactorforces.txt deleted file mode 100644 index cbfeb71..0000000 --- a/doc/bu/files/clearactorforces.txt +++ /dev/null @@ -1,11 +0,0 @@ -#title clearActorForces [RCBasic Doc] -#header sub clearActorForces( actor) - -Resets or clears all the forces and torques that have been applied to a rigid body in the current simulation step. This ensures that any forces, including linear forces and torques, do not accumulate from one simulation step to the next. - -Notes: -#list -#li Resets Forces: It removes all linear forces (like those applied by applyActorForce or applyActorCentralForce) and torques (like those applied by applyActorTorque). -#li Does Not Affect Velocity: It clears only the applied forces and torques, but the current velocity (linear and angular) of the actor remains unchanged. -#li Typically Used in Each Simulation Step: Used to reset forces after each step, so that only new forces applied in the next step will affect the body. -#/list diff --git a/doc/bu/files/clearcanvas.txt b/doc/bu/files/clearcanvas.txt deleted file mode 100644 index e952865..0000000 --- a/doc/bu/files/clearcanvas.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title ClearCanvas [RCBasic Doc] -#header sub ClearCanvas() - -Clears the active drawing canvas diff --git a/doc/bu/files/clearmatrix.txt b/doc/bu/files/clearmatrix.txt deleted file mode 100644 index 53b23d6..0000000 --- a/doc/bu/files/clearmatrix.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title ClearMatrix [RCBasic Doc] -#header sub ClearMatrix(mA) - -Sets all elements in a matrix to zero diff --git a/doc/bu/files/clearmatrixcolumns.txt b/doc/bu/files/clearmatrixcolumns.txt deleted file mode 100644 index 4cae668..0000000 --- a/doc/bu/files/clearmatrixcolumns.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title ClearMatrixColumns [RCBasic Doc] -#header function ClearMatrixColumns(mA, c, num_cols) - -Sets all elements in the matrix columns specified to zero. - -#ref ClearMatrix ClearMatrixRows diff --git a/doc/bu/files/clearmatrixrows.txt b/doc/bu/files/clearmatrixrows.txt deleted file mode 100644 index cc1d416..0000000 --- a/doc/bu/files/clearmatrixrows.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title ClearMatrixRows [RCBasic Doc] -#header function ClearMatrixRows(mA, r, num_rows) - -Sets all elements in the matrix rows specified to zero. - -#ref ClearMatrix ClearMatrixColumns diff --git a/doc/bu/files/clearmousezone.txt b/doc/bu/files/clearmousezone.txt deleted file mode 100644 index 953683a..0000000 --- a/doc/bu/files/clearmousezone.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title ClearMouseZone [RCBasic Doc] -#header sub ClearMouseZone() - -Removes the previously set mouse zone from the window diff --git a/doc/bu/files/clearstack_n.txt b/doc/bu/files/clearstack_n.txt deleted file mode 100644 index 60dc4dc..0000000 --- a/doc/bu/files/clearstack_n.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title ClearStack_N [RCBasic Doc] -#header sub ClearStack_N( num_stack ) - -Removes all elements from the stack - -#ref ClearStack_S diff --git a/doc/bu/files/clearstack_s.txt b/doc/bu/files/clearstack_s.txt deleted file mode 100644 index 020ce91..0000000 --- a/doc/bu/files/clearstack_s.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title ClearStack_S [RCBasic Doc] -#header sub ClearStack_S( str_stack ) - -Removes all elements from the stack - -#ref ClearStack_N diff --git a/doc/bu/files/clipmatrix.txt b/doc/bu/files/clipmatrix.txt deleted file mode 100644 index 001e5c2..0000000 --- a/doc/bu/files/clipmatrix.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title ClipMatrix [RCBasic Doc] -#header sub ClipMatrix(mA, r, c, num_rows, num_cols, mB) - -Copies the specified portion of matrix mA into matrix mB diff --git a/doc/bu/files/clonecanvas.txt b/doc/bu/files/clonecanvas.txt deleted file mode 100644 index 8910bca..0000000 --- a/doc/bu/files/clonecanvas.txt +++ /dev/null @@ -1,9 +0,0 @@ -#title CloneCanvas [RCBasic Doc] -#header function CloneCanvas(c_num, mode) - -Returns a clone of a canvas. Clone canvases are mirrors of the original canvas so when you draw to one it will also be on the other. This is useful for a splitscreen 2d game. - -Mode is a canvas render mode like the one passed to OpenCanvas() - - -#ref OpenCanvas diff --git a/doc/bu/files/closecanvas.txt b/doc/bu/files/closecanvas.txt deleted file mode 100644 index c78af01..0000000 --- a/doc/bu/files/closecanvas.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title CloseCanvas [RCBasic Doc] -#header Sub CloseCanvas(c_num) - -Closes a canvas - -#ref OpenCanvas diff --git a/doc/bu/files/closefile.txt b/doc/bu/files/closefile.txt deleted file mode 100644 index 21efc01..0000000 --- a/doc/bu/files/closefile.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title CloseFile [RCBasic Doc] -#header sub CloseFile( stream ) - -Closes a file - -#ref OpenFile diff --git a/doc/bu/files/closewindow.txt b/doc/bu/files/closewindow.txt deleted file mode 100644 index 05c9656..0000000 --- a/doc/bu/files/closewindow.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title CloseWindow [RCBasic Doc] -#header sub CloseWindow( ) - -Closes the graphics window - -#ref OpenWindow diff --git a/doc/bu/files/cls.txt b/doc/bu/files/cls.txt deleted file mode 100644 index eaedc84..0000000 --- a/doc/bu/files/cls.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title Cls [RCBasic Doc] -#header sub Cls() - -Clears the back buffer on the window diff --git a/doc/bu/files/cofactormatrix.txt b/doc/bu/files/cofactormatrix.txt deleted file mode 100644 index 19a1431..0000000 --- a/doc/bu/files/cofactormatrix.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title CofactorMatrix [RCBasic Doc] -#header sub CofactorMatrix(mA, r, c) - -Sets matrix mA to a cofactor. This will change the original matrix so it is recommended to copy the matrix if you still need the original matrix. - -#ref CopyMatrix diff --git a/doc/bu/files/colorkey.txt b/doc/bu/files/colorkey.txt deleted file mode 100644 index 1d00863..0000000 --- a/doc/bu/files/colorkey.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title ColorKey [RCBasic Doc] -#header sub ColorKey(img_id, c) - -Sets the color key for an image diff --git a/doc/bu/files/command.txt b/doc/bu/files/command.txt deleted file mode 100644 index 9b71e89..0000000 --- a/doc/bu/files/command.txt +++ /dev/null @@ -1,8 +0,0 @@ -#title Command$ [RCBasic Doc] -#header function Command$(arg) - -Returns command line arguments passed to a program. - -Note: Command$(0) will always be the program being executed ( your_program.cbc ) - -#ref NumCommands diff --git a/doc/bu/files/computeactorangularimpulsedenominator.txt b/doc/bu/files/computeactorangularimpulsedenominator.txt deleted file mode 100644 index 1a66853..0000000 --- a/doc/bu/files/computeactorangularimpulsedenominator.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title ComputeActorAngularImpulseDenominator [RCBasic Doc] -#header function ComputeActorAngularImpulseDenominator( actor, x, y, z) - -Computes a scalar value that represents how an actor will respond to an angular impulse at a given point, taking into account the actor's inertia tensor (which governs how the object resists rotation). This function is particularly useful in calculating the actor's rotational response to an impulse, typically during collision resolution or constraints involving rotation. - -#ref ComputeActorImpulseDenominator diff --git a/doc/bu/files/computeactorgyroimpulselocal.txt b/doc/bu/files/computeactorgyroimpulselocal.txt deleted file mode 100644 index 4f91f63..0000000 --- a/doc/bu/files/computeactorgyroimpulselocal.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title ComputeActorGyroImpulseLocal [RCBasic Doc] -#header sub ComputeActorGyroImpulseLocal( actor, dt, ByRef x, ByRef y, ByRef z) - -Computes the gyroscopic impulse for an actor in an implicit manner, based on the actor's current angular velocity and inertia. This function is used to simulate the gyroscopic effect—also known as gyroscopic precession—which occurs when a rotating object experiences a torque that causes its axis of rotation to change. - -#ref ComputeActorGyroImpulseWorld diff --git a/doc/bu/files/computeactorgyroimpulseworld.txt b/doc/bu/files/computeactorgyroimpulseworld.txt deleted file mode 100644 index cb04f05..0000000 --- a/doc/bu/files/computeactorgyroimpulseworld.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title ComputeActorGyroImpulseWorld [RCBasic Doc] -#header sub ComputeActorGyroImpulseWorld( actor, dt, ByRef x, ByRef y, ByRef z) - -Computes the gyroscopic impulse for an actor in an implicit manner, but in this case, it performs the calculation relative to the world frame of reference, rather than the actor’s local frame. This function is used to handle the gyroscopic effects (i.e., gyroscopic precession) of a rotating object when a torque is applied, affecting its axis of rotation. - -#ref ComputeActorGyroImpulseLocal diff --git a/doc/bu/files/computeactorimpulsedenominator.txt b/doc/bu/files/computeactorimpulsedenominator.txt deleted file mode 100644 index 53250fe..0000000 --- a/doc/bu/files/computeactorimpulsedenominator.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title ComputeActorImpulseDenominator [RCBasic Doc] -#header function ComputeActorImpulseDenominator( actor, pos_x, pos_y, pos_z, normal_x, normal_y, normal_z) - -Computes a scalar value related to how a rigid body will respond to an applied impulse at a given point. It’s primarily used internally in the physics engine to calculate how an object’s mass, inertia, and shape will affect the outcome of impulses, particularly in collisions or constraints like contact points between objects. - -#ref ComputeActorAngularImpulseDenominator diff --git a/doc/bu/files/copyactormaterial.txt b/doc/bu/files/copyactormaterial.txt deleted file mode 100644 index 6fc5ce6..0000000 --- a/doc/bu/files/copyactormaterial.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title copyActorMaterial [RCBasic Doc] -#header function copyActorMaterial( actor, material_num) - -Returns a material id for a copy of an actor's material diff --git a/doc/bu/files/copyfile.txt b/doc/bu/files/copyfile.txt deleted file mode 100644 index af5b3a4..0000000 --- a/doc/bu/files/copyfile.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title CopyFile [RCBasic Doc] -#header sub CopyFile(src$, dst$) - -Copies the contents of src$ file to a new dst$ file diff --git a/doc/bu/files/copyimage.txt b/doc/bu/files/copyimage.txt deleted file mode 100644 index 19d0008..0000000 --- a/doc/bu/files/copyimage.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title CopyImage [RCBasic Doc] -#header function CopyImage( img_id ) - -Returns a copy of an image diff --git a/doc/bu/files/copymaterial.txt b/doc/bu/files/copymaterial.txt deleted file mode 100644 index ec68fbe..0000000 --- a/doc/bu/files/copymaterial.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title copyMaterial [RCBasic Doc] -#header function copyMaterial( smaterial_id) - -Returns a copy of a material diff --git a/doc/bu/files/copymatrix.txt b/doc/bu/files/copymatrix.txt deleted file mode 100644 index ffd1295..0000000 --- a/doc/bu/files/copymatrix.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title CopyMatrix [RCBasic Doc] -#header sub CopyMatrix(mA, mB) - -Copies matrix mA to matrix mB diff --git a/doc/bu/files/copymatrixcolumns.txt b/doc/bu/files/copymatrixcolumns.txt deleted file mode 100644 index be6d2d9..0000000 --- a/doc/bu/files/copymatrixcolumns.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title CopyMatrixColumns [RCBasic Doc] -#header function CopyMatrixColumns(mA, mB, c, num_cols) - -Copies the specified matrix columns from matrix mA to matrix mB. - -Note: Matrix mB will be redimensioned to the size of the copied columns. diff --git a/doc/bu/files/copymatrixrows.txt b/doc/bu/files/copymatrixrows.txt deleted file mode 100644 index b580326..0000000 --- a/doc/bu/files/copymatrixrows.txt +++ /dev/null @@ -1,7 +0,0 @@ -#title CopyMatrixRows [RCBasic Doc] -#header function CopyMatrixRows(mA, mB, r, num_rows) - -Copies the specified matrix rows from matrix mA to matrix mB. - -Note: Matrix mB will be redimensioned to the size of the copied rows. - diff --git a/doc/bu/files/cos.txt b/doc/bu/files/cos.txt deleted file mode 100644 index 5cf7b8d..0000000 --- a/doc/bu/files/cos.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title Cos [RCBasic Doc] -#header function Cos(n) - -Returns the Cosine of an angle diff --git a/doc/bu/files/createbillboardactor.txt b/doc/bu/files/createbillboardactor.txt deleted file mode 100644 index 6966c4f..0000000 --- a/doc/bu/files/createbillboardactor.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title CreateBillboardActor [RCBasic Doc] -#header function CreateBillboardActor( ) - -Returns a billboard actor - -Billboard actors are flat textured planes that are always facing the camera. diff --git a/doc/bu/files/createconeconstraint.txt b/doc/bu/files/createconeconstraint.txt deleted file mode 100644 index 4a9c9b7..0000000 --- a/doc/bu/files/createconeconstraint.txt +++ /dev/null @@ -1,19 +0,0 @@ -#title CreateConeConstraint [RCBasic Doc] -#header function CreateConeConstraint( actorA, rbAFrame_matrix) - -The Cone Constraint is a type of joint constraint used to simulate realistic rotational movement between two actors (or between an actor and the world) with specific angular limits. This constraint is especially useful for simulating ball-and-socket joints with some twisting freedom but restricted cone-like movement, such as human shoulders or robotic arms. - -#code -actorA = CreateCubeActor(100) - -rbA = DimMatrix(4, 4) 'A transform matrix should be a 4x4 matrix -SetIdentityMatrix(rbA, 4) 'This will set rbA to a 4x4 identity matrix -SetMatrixTranslation(rbA, 0, 40, 0) 'Set the point where the constraint connects to actorA to 1 unit above its origin -SetMatrixRotation(rbA, 0, 0, 0) 'Sets the angle the constraint is attached at to 0 on all axes - -test_cone = CreateConeConstraint( actorA, rbA ) -#/code - -Note: It is recommended to use CreateConeConstraintEx() in most cases - -#ref CreateConeConstraintEx SetIdentityMatrix SetMatrixTranslation SetMatrixRotation diff --git a/doc/bu/files/createconeconstraintex.txt b/doc/bu/files/createconeconstraintex.txt deleted file mode 100644 index f742059..0000000 --- a/doc/bu/files/createconeconstraintex.txt +++ /dev/null @@ -1,23 +0,0 @@ -#title createConeConstraintEx [RCBasic Doc] -#header function createConeConstraintEx( actorA, actorB, rbAFrame_matrix, rbBFrame_matrix) - -The Cone Constraint is a type of joint constraint used to simulate realistic rotational movement between two actors (or between an actor and the world) with specific angular limits. This constraint is especially useful for simulating ball-and-socket joints with some twisting freedom but restricted cone-like movement, such as human shoulders or robotic arms. - -#code -actorA = CreateCubeActor(100) -actorB = CreateCubeActor(100) - -rbA = DimMatrix(4, 4) 'A transform matrix should be a 4x4 matrix -SetIdentityMatrix(rbA, 4) 'This will set rbA to a 4x4 identity matrix -SetMatrixTranslation(rbA, 0, 40, 0) 'Set the point where the constraint connects to actorA to 1 unit above its origin -SetMatrixRotation(rbA, 0, 0, 0) 'Sets the angle the constraint is attached at to 0 on all axes - -rbB = DimMatrix(4, 4) 'A transform matrix should be a 4x4 matrix -SetIdentityMatrix(rbB, 4) 'This will set rbA to a 4x4 identity matrix -SetMatrixTranslation(rbB, 0, 40, 0) 'Set the point where the constraint connects to actorA to 1 unit above its origin -SetMatrixRotation(rbB, 0, 0, 0) 'Sets the angle the constraint is attached at to 0 on all axes - -test_cone = CreateConeConstraint( actorA, rbA ) -#/code - -#ref CreateConeConstraint SetIdentityMatrix SetMatrixTranslation SetMatrixRotation diff --git a/doc/bu/files/createcubeactor.txt b/doc/bu/files/createcubeactor.txt deleted file mode 100644 index 921c283..0000000 --- a/doc/bu/files/createcubeactor.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title CreateCubeActor [RCBasic Doc] -#header function CreateCubeActor( cube_size ) - -Returns an actor with a cube mesh of the specified size ( cube_size x cube_size x cube_size ) - -#ref CreateMeshActor CreateMeshOctreeActor CreateSphereActor CreateWaterPlaneActor CreateLightActor CreateBillboardActor CreateTerrainActor diff --git a/doc/bu/files/createhingeconstraint.txt b/doc/bu/files/createhingeconstraint.txt deleted file mode 100644 index 0fc595e..0000000 --- a/doc/bu/files/createhingeconstraint.txt +++ /dev/null @@ -1,17 +0,0 @@ -#title createHingeConstraint [RCBasic Doc] -#header function createHingeConstraint( actorA, frameA, useReferenceFrameA ) - -Simulates a hinge joint, which allows two actors (or an actor and the world) to rotate around a single axis while restricting movement along the other axes. This is similar to the way a door swings on its hinges or how an elbow joint functions in the human body. - -#code -actorA = CreateCubeActor(100) 'Creates a cube actor -frameA = DimMatrix(4, 4) 'A transform matrix must be a 4x4 matrix -SetIdentityMatrix(frameA, 4) 'Sets frameB to a 4x4 identity matrix -SetMatrixTranslation(frameA, 0, 1, 0) 'Sets the attach point of the constraint to the top of the cube -hinge = CreateHingeConstraint(actorA, frameA, true) -#/code - -Note: It is recommended to use CreateSlideConstraintEx() in most cases - -#ref CreateHingeConstraintEx SetIdentityMatrix SetMatrixTranslation SetMatrixRotation - diff --git a/doc/bu/files/createhingeconstraintex.txt b/doc/bu/files/createhingeconstraintex.txt deleted file mode 100644 index d68b2e6..0000000 --- a/doc/bu/files/createhingeconstraintex.txt +++ /dev/null @@ -1,23 +0,0 @@ -#title createHingeConstraintEx [RCBasic Doc] -#header function createHingeConstraintEx( actorA, actorB, frameA, frameB, useReferenceFrameA) - -Simulates a hinge joint, which allows two actors (or an actor and the world) to rotate around a single axis while restricting movement along the other axes. This is similar to the way a door swings on its hinges or how an elbow joint functions in the human body. - -#code -actorA = CreateCubeActor(100) 'Creates a cube actor -frameA = DimMatrix(4, 4) 'A transform matrix must be a 4x4 matrix -SetIdentityMatrix(frameA, 4) 'Sets frameB to a 4x4 identity matrix -SetMatrixTranslation(frameA, 0, 1, 0) 'Sets the attach point of the constraint to the top of the cube - -actorB = CreateCubeActor(100) 'Creates a cube actor -frameB = DimMatrix(4, 4) 'A transform matrix must be a 4x4 matrix -SetIdentityMatrix(frameB, 4) 'Sets frameB to a 4x4 identity matrix -SetMatrixTranslation(frameB, 0, 1, 0) 'Sets the attach point of the constraint to the top of the cube - -hinge = CreateHingeConstraint(actorA, actorB, frameA, frameB, true) -#/code - -Note: It is recommended to use CreateHingeConstraintEx() in most cases - -#ref CreateHingeConstraint SetIdentityMatrix SetMatrixTranslation SetMatrixRotation - diff --git a/doc/bu/files/createimage.txt b/doc/bu/files/createimage.txt deleted file mode 100644 index 116ffba..0000000 --- a/doc/bu/files/createimage.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title CreateImage [RCBasic Doc] -#header function CreateImage(w, h, byref buffer) - -Returns an image created from the buffer provided - -#ref CreateImageEx LoadImage diff --git a/doc/bu/files/createimageex.txt b/doc/bu/files/createimageex.txt deleted file mode 100644 index 11f34fe..0000000 --- a/doc/bu/files/createimageex.txt +++ /dev/null @@ -1,9 +0,0 @@ -#title createImageEx [RCBasic Doc] -#header function createImageEx(w, h, byref buffer, color) - -Returns an image created from the buffer provided - -The color parameter is a color key value to apply - -#ref CreateImage LoadImage - diff --git a/doc/bu/files/createlightactor.txt b/doc/bu/files/createlightactor.txt deleted file mode 100644 index c0c24d4..0000000 --- a/doc/bu/files/createlightactor.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title CreateLightActor [RCBasic Doc] -#header function CreateLightActor( ) - -Returns a new light in the scene - -#ref CreateMeshActor CreateMeshOctreeActor CreateCubeActor CreateSphereActor CreateWaterPlaneActor CreateBillboardActor CreateTerrainActor diff --git a/doc/bu/files/creatematerial.txt b/doc/bu/files/creatematerial.txt deleted file mode 100644 index 4cd5875..0000000 --- a/doc/bu/files/creatematerial.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title createMaterial [RCBasic Doc] -#header function createMaterial() - -Returns a new material diff --git a/doc/bu/files/createmesh.txt b/doc/bu/files/createmesh.txt deleted file mode 100644 index 3f258eb..0000000 --- a/doc/bu/files/createmesh.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title CreateMesh [RCBasic Doc] -#header function CreateMesh( ) - -Returns a new mesh diff --git a/doc/bu/files/createmeshactor.txt b/doc/bu/files/createmeshactor.txt deleted file mode 100644 index a25428d..0000000 --- a/doc/bu/files/createmeshactor.txt +++ /dev/null @@ -1,10 +0,0 @@ -#title CreateMeshActor [RCBasic Doc] -#header function CreateMeshActor( mesh ) - -Returns a new actor composed of a mesh - -The mesh can either be created using CreateMesh() or Loaded using LoadMesh() - -#ref CreateMesh LoadMesh -
-#ref CreateMeshOctreeActor CreateCubeActor CreateSphereActor CreateWaterPlaneActor CreateLightActor CreateBillboardActor CreateTerrainActor diff --git a/doc/bu/files/createmeshoctreeactor.txt b/doc/bu/files/createmeshoctreeactor.txt deleted file mode 100644 index 633ffe8..0000000 --- a/doc/bu/files/createmeshoctreeactor.txt +++ /dev/null @@ -1,8 +0,0 @@ -#title CreateMeshOctreeActor [RCBasic Doc] -#header function CreateMeshOctreeActor( mesh ) - -Returns a mesh actor optimized for large objects (such as levels) - -#ref CreateMesh LoadMesh -
-#ref CreateMeshActor CreateCubeActor CreateSphereActor CreateWaterPlaneActor CreateLightActor CreateBillboardActor CreateTerrainActor diff --git a/doc/bu/files/createpointconstraint.txt b/doc/bu/files/createpointconstraint.txt deleted file mode 100644 index b1376a9..0000000 --- a/doc/bu/files/createpointconstraint.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title createPointConstraint [RCBasic Doc] -#header function createPointConstraint( actorA, pxA, pyA, pzA) - -A type of constraint that allows two actors (or an actor and the world) to move freely relative to each other while ensuring that one point on each body remains coincident. Essentially, it ensures that the two actors stay connected at a single point, but without restricting their relative rotations. This kind of constraint is useful when you need a connection that allows full rotation in all directions, such as a pendulum, ball joint, or even some suspension systems. - -#ref CreatePointConstraintEx diff --git a/doc/bu/files/createpointconstraintex.txt b/doc/bu/files/createpointconstraintex.txt deleted file mode 100644 index f17b183..0000000 --- a/doc/bu/files/createpointconstraintex.txt +++ /dev/null @@ -1,7 +0,0 @@ -#title createPointConstraintEx [RCBasic Doc] -#header function createPointConstraintEx( actorA, actorB, pxA, pyA, pzA, pxB, pyB, pzB) - -A type of constraint that allows two actors (or an actor and the world) to move freely relative to each other while ensuring that one point on each body remains coincident. Essentially, it ensures that the two actors stay connected at a single point, but without restricting their relative rotations. This kind of constraint is useful when you need a connection that allows full rotation in all directions, such as a pendulum, ball joint, or even some suspension systems. - -#ref CreatePointConstraint - diff --git a/doc/bu/files/createslideconstraint.txt b/doc/bu/files/createslideconstraint.txt deleted file mode 100644 index 5063718..0000000 --- a/doc/bu/files/createslideconstraint.txt +++ /dev/null @@ -1,17 +0,0 @@ -#title createSlideConstraint [RCBasic Doc] -#header function createSlideConstraint( actorA, frameInB_matrix, useLinearReferenceFrameA) - -A type of constraint that restricts the motion between two actors (or between an actor and the world) in such a way that they can slide along a specific axis and rotate around the same axis, while limiting or allowing movement along other axes. This constraint is similar to a prismatic joint with added rotational freedom, making it useful for simulating objects like pistons, sliding doors, or rail systems. - -#code -actorA = CreateCubeActor(100) 'Creates a cube actor -frameB = DimMatrix(4, 4) 'A transform matrix must be a 4x4 matrix -SetIdentityMatrix(frameB, 4) 'Sets frameB to a 4x4 identity matrix -SetMatrixTranslation(frameB, 0, 50, 0) 'Sets the attach point of the constraint to the top of the cube -SetMatrixRotation(frameB, 0, 90, 0) 'Rotates the constraint axis by 90 degrees around y -slide = CreateSlideConstraint(actorA, frameB, true) -#/code - -Note: It is recommended to use CreateSlideConstraintEx() in most cases - -#ref CreateSlideConstraintEx SetIdentityMatrix SetMatrixTranslation SetMatrixRotation diff --git a/doc/bu/files/createslideconstraintex.txt b/doc/bu/files/createslideconstraintex.txt deleted file mode 100644 index 9aeeebe..0000000 --- a/doc/bu/files/createslideconstraintex.txt +++ /dev/null @@ -1,24 +0,0 @@ -#title createSlideConstraintEx [RCBasic Doc] -#header function createSlideConstraintEx( actorA, actorB, frameInA_matrix, frameInB_matrix, useLinearReferenceFrameA) - -A type of constraint that restricts the motion between two actors (or between an actor and the world) in such a way that they can slide along a specific axis and rotate around the same axis, while limiting or allowing movement along other axes. This constraint is similar to a prismatic joint with added rotational freedom, making it useful for simulating objects like pistons, sliding doors, or rail systems. - -#code -actorA = CreateCubeActor(100) 'Creates a cube actor -frameA = DimMatrix(4, 4) 'A transform matrix must be a 4x4 matrix -SetIdentityMatrix(frameA, 4) 'Sets frameB to a 4x4 identity matrix -SetMatrixTranslation(frameA, 0, 0, 0) 'Sets the attach point of the constraint to center of the cube -SetMatrixRotation(frameA, 0, 90, 0) 'Rotates the constraint axis by 90 degrees around y - -actorB = CreateCubeActor(100) 'Creates a cube actor -frameB = DimMatrix(4, 4) 'A transform matrix must be a 4x4 matrix -SetIdentityMatrix(frameB, 4) 'Sets frameB to a 4x4 identity matrix -SetMatrixTranslation(frameB, 0, 50, 0) 'Sets the attach point of the constraint to the top of the cube -SetMatrixRotation(frameB, 0, 90, 0) 'Rotates the constraint axis by 90 degrees around y -slide = CreateSlideConstraintEx(actorA, actorB, frameA, frameB, true) -#/code - -Note: It is recommended to use CreateSlideConstraintEx() in most cases - -#ref CreateSlideConstraint SetIdentityMatrix SetMatrixTranslation SetMatrixRotation - diff --git a/doc/bu/files/createsound.txt b/doc/bu/files/createsound.txt deleted file mode 100644 index f5fc41c..0000000 --- a/doc/bu/files/createsound.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title CreateSound [RCBasic Doc] -#header function CreateSound(byref buffer, buffer_size, vol) - -Returns a new sound from a buffer of raw audio data diff --git a/doc/bu/files/createsphereactor.txt b/doc/bu/files/createsphereactor.txt deleted file mode 100644 index 8894b23..0000000 --- a/doc/bu/files/createsphereactor.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title CreateSphereActor [RCBasic Doc] -#header function CreateSphereActor( radius ) - -Returns an actor composed of a sphere mesh - -#ref CreateMeshActor CreateMeshOctreeActor CreateCubeActor CreateWaterPlaneActor CreateLightActor CreateBillboardActor CreateTerrainActor diff --git a/doc/bu/files/createsprite.txt b/doc/bu/files/createsprite.txt deleted file mode 100644 index bc7fbf1..0000000 --- a/doc/bu/files/createsprite.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title CreateSprite [RCBasic Doc] -#header function CreateSprite( img ) - -Returns new sprite diff --git a/doc/bu/files/createstack_n.txt b/doc/bu/files/createstack_n.txt deleted file mode 100644 index 2a1f8d3..0000000 --- a/doc/bu/files/createstack_n.txt +++ /dev/null @@ -1,5 +0,0 @@ -#title CreateStack_N [RCBasic Doc] -#header function CreateStack_N( ) - -Returns a new number stack - diff --git a/doc/bu/files/createstack_s.txt b/doc/bu/files/createstack_s.txt deleted file mode 100644 index 48bbc15..0000000 --- a/doc/bu/files/createstack_s.txt +++ /dev/null @@ -1,5 +0,0 @@ -#title CreateStack_S [RCBasic Doc] -#header function CreateStack_S() - -Returns a new string stack - diff --git a/doc/bu/files/createterrainactor.txt b/doc/bu/files/createterrainactor.txt deleted file mode 100644 index b8ba9f9..0000000 --- a/doc/bu/files/createterrainactor.txt +++ /dev/null @@ -1,8 +0,0 @@ -#title CreateTerrainActor [RCBasic Doc] -#header function CreateTerrainActor( hmap_file$ ) - -Returns terrain generated from a height map - -Note: Height Maps can be any supported image format - -#ref CreateMeshActor CreateMeshOctreeActor CreateCubeActor CreateSphereActor CreateWaterPlaneActor CreateLightActor CreateBillboardActor diff --git a/doc/bu/files/createwaterplaneactor.txt b/doc/bu/files/createwaterplaneactor.txt deleted file mode 100644 index ed1f97f..0000000 --- a/doc/bu/files/createwaterplaneactor.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title CreateWaterPlaneActor [RCBasic Doc] -#header function CreateWaterPlaneActor( w, h ) - -Returns a water plane actor - -#ref CreateMeshActor CreateMeshOctreeActor CreateCubeActor CreateSphereActor CreateLightActor CreateBillboardActor CreateTerrainActor diff --git a/doc/bu/files/cubematrix.txt b/doc/bu/files/cubematrix.txt deleted file mode 100644 index e949679..0000000 --- a/doc/bu/files/cubematrix.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title CubeMatrix [RCBasic Doc] -#header function CubeMatrix(mA, mB) - -Returns matrix mA raised to the 3rd power diff --git a/doc/bu/files/date.txt b/doc/bu/files/date.txt deleted file mode 100644 index 672d718..0000000 --- a/doc/bu/files/date.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title Date$ [RCBasic Doc] -#header function Date$() - -Returns the date in "MM-DD-YYYY" format diff --git a/doc/bu/files/degrees.txt b/doc/bu/files/degrees.txt deleted file mode 100644 index 96d0046..0000000 --- a/doc/bu/files/degrees.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title Degrees [RCBasic Doc] -#header function Degrees(r) - -Returns angle converted from radians to degrees diff --git a/doc/bu/files/deleteactor.txt b/doc/bu/files/deleteactor.txt deleted file mode 100644 index 38b80e9..0000000 --- a/doc/bu/files/deleteactor.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title DeleteActor [RCBasic Doc] -#header sub DeleteActor( actor ) - -Removes an actor from the scene and frees its memory diff --git a/doc/bu/files/deleteconstraint.txt b/doc/bu/files/deleteconstraint.txt deleted file mode 100644 index fe8dd8e..0000000 --- a/doc/bu/files/deleteconstraint.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title deleteConstraint [RCBasic Doc] -#header sub deleteConstraint( constraint_id) - -Removes a constraint diff --git a/doc/bu/files/deletefont.txt b/doc/bu/files/deletefont.txt deleted file mode 100644 index 4a5f97e..0000000 --- a/doc/bu/files/deletefont.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title DeleteFont [RCBasic Doc] -#header sub DeleteFont(font_id) - -Frees a font from memory diff --git a/doc/bu/files/deleteimage.txt b/doc/bu/files/deleteimage.txt deleted file mode 100644 index 164f0d0..0000000 --- a/doc/bu/files/deleteimage.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title DeleteImage [RCBasic Doc] -#header sub DeleteImage(img) - -Removes an image from memory diff --git a/doc/bu/files/deletematerial.txt b/doc/bu/files/deletematerial.txt deleted file mode 100644 index 5e4d8a5..0000000 --- a/doc/bu/files/deletematerial.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title deleteMaterial [RCBasic Doc] -#header sub deleteMaterial( material_id) - -Removes a material from memory diff --git a/doc/bu/files/deletematrix.txt b/doc/bu/files/deletematrix.txt deleted file mode 100644 index a1774e8..0000000 --- a/doc/bu/files/deletematrix.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title DeleteMatrix [RCBasic Doc] -#header Sub DeleteMatrix(mA) - -Frees a matrix from memory diff --git a/doc/bu/files/deletematrixcolumns.txt b/doc/bu/files/deletematrixcolumns.txt deleted file mode 100644 index 51427c0..0000000 --- a/doc/bu/files/deletematrixcolumns.txt +++ /dev/null @@ -1,8 +0,0 @@ -#title DeleteMatrixColumns [RCBasic Doc] -#header function DeleteMatrixColumns(mA, c, num_cols) - -Removes the specified columns from a matrix - -Returns false if column are outside matrix - -#ref DeleteMatrixRows diff --git a/doc/bu/files/deletematrixrows.txt b/doc/bu/files/deletematrixrows.txt deleted file mode 100644 index c6e3a4a..0000000 --- a/doc/bu/files/deletematrixrows.txt +++ /dev/null @@ -1,8 +0,0 @@ -#title DeleteMatrixRows [RCBasic Doc] -#header function DeleteMatrixRows(mA, r, num_rows) - -Removes the specified rows from a matrix - -Returns false if rows are outside matrix - -#ref DeleteMatrixColumns diff --git a/doc/bu/files/deletemesh.txt b/doc/bu/files/deletemesh.txt deleted file mode 100644 index fca2650..0000000 --- a/doc/bu/files/deletemesh.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title DeleteMesh [RCBasic Doc] -#header sub DeleteMesh( mesh ) - -Removes a mesh from memory diff --git a/doc/bu/files/deletemusic.txt b/doc/bu/files/deletemusic.txt deleted file mode 100644 index 617f5ab..0000000 --- a/doc/bu/files/deletemusic.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title DeleteMusic [RCBasic Doc] -#header sub DeleteMusic() - -Removes the current music track from memory diff --git a/doc/bu/files/deletesound.txt b/doc/bu/files/deletesound.txt deleted file mode 100644 index 73852c7..0000000 --- a/doc/bu/files/deletesound.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title DeleteSound [RCBasic Doc] -#header sub DeleteSound(snd) - -Removes a sound from memory diff --git a/doc/bu/files/deletesprite.txt b/doc/bu/files/deletesprite.txt deleted file mode 100644 index 602dfed..0000000 --- a/doc/bu/files/deletesprite.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title DeleteSprite [RCBasic Doc] -#header Sub DeleteSprite( sprite ) - -Removes a sprite from memory diff --git a/doc/bu/files/deletestack_n.txt b/doc/bu/files/deletestack_n.txt deleted file mode 100644 index 672e79c..0000000 --- a/doc/bu/files/deletestack_n.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title DeleteStack_N [RCBasic Doc] -#header sub DeleteStack_N( num_stack ) - -Removes a number stack from memory diff --git a/doc/bu/files/deletestack_s.txt b/doc/bu/files/deletestack_s.txt deleted file mode 100644 index 2969a36..0000000 --- a/doc/bu/files/deletestack_s.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title DeleteStack_S [RCBasic Doc] -#header sub DeleteStack_S( str_stack ) - -Removes a string stack from memory diff --git a/doc/bu/files/deletevideo.txt b/doc/bu/files/deletevideo.txt deleted file mode 100644 index 486f00b..0000000 --- a/doc/bu/files/deletevideo.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title DeleteVideo [RCBasic Doc] -#header sub DeleteVideo() - -Removes the current video track from memory diff --git a/doc/bu/files/determinant.txt b/doc/bu/files/determinant.txt deleted file mode 100644 index 8d255ba..0000000 --- a/doc/bu/files/determinant.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title Determinant [RCBasic Doc] -#header function Determinant(mA) - -Returns the determinant of matrix mA diff --git a/doc/bu/files/dimmatrix.txt b/doc/bu/files/dimmatrix.txt deleted file mode 100644 index c94db52..0000000 --- a/doc/bu/files/dimmatrix.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title DimMatrix [RCBasic Doc] -#header function DimMatrix(m_rows, m_cols) - -Returns a new matrix diff --git a/doc/bu/files/dir.txt b/doc/bu/files/dir.txt deleted file mode 100644 index 7c5de53..0000000 --- a/doc/bu/files/dir.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title Dir$ [RCBasic Doc] -#header function Dir$() - -Returns the current working directory diff --git a/doc/bu/files/direxists.txt b/doc/bu/files/direxists.txt deleted file mode 100644 index 05afda9..0000000 --- a/doc/bu/files/direxists.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title DirExists [RCBasic Doc] -#header function DirExists(p$) - -Returns true if a directory exists and false if not diff --git a/doc/bu/files/dirfirst.txt b/doc/bu/files/dirfirst.txt deleted file mode 100644 index 2758f31..0000000 --- a/doc/bu/files/dirfirst.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title DirFirst$ [RCBasic Doc] -#header function DirFirst$() - -Resets the directory list poll and returns the first item in the current working directory diff --git a/doc/bu/files/dirnext.txt b/doc/bu/files/dirnext.txt deleted file mode 100644 index 8657887..0000000 --- a/doc/bu/files/dirnext.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title DirNext$ [RCBasic Doc] -#header function DirNext$() - -Returns the next item in the directory poll - -#ref DirFirst$ diff --git a/doc/bu/files/distance2d.txt b/doc/bu/files/distance2d.txt deleted file mode 100644 index ef41e31..0000000 --- a/doc/bu/files/distance2d.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title Distance2D [RCBasic Doc] -#header Function Distance2D(x1, y1, x2, y2) - -Returns the distance between 2 points in 2d space diff --git a/doc/bu/files/distance3d.txt b/doc/bu/files/distance3d.txt deleted file mode 100644 index 20cfffb..0000000 --- a/doc/bu/files/distance3d.txt +++ /dev/null @@ -1,5 +0,0 @@ -#title Distance3D [RCBasic Doc] -#header Function Distance3D(x1, y1, z1, x2, y2, z2) - -Returns the distance between 2 points in 3d space - diff --git a/doc/bu/files/drawimage.txt b/doc/bu/files/drawimage.txt deleted file mode 100644 index 03d0504..0000000 --- a/doc/bu/files/drawimage.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title DrawImage [RCBasic Doc] -#header sub DrawImage(img, x, y) - -Draws an image on the active canvas diff --git a/doc/bu/files/drawimage_blit.txt b/doc/bu/files/drawimage_blit.txt deleted file mode 100644 index 3b49158..0000000 --- a/doc/bu/files/drawimage_blit.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title DrawImage_Blit [RCBasic Doc] -#header sub DrawImage_Blit(img, x, y, src_x, src_y, src_w, src_h) - -Draws a portion of an image to the current canvas. diff --git a/doc/bu/files/drawimage_blitex.txt b/doc/bu/files/drawimage_blitex.txt deleted file mode 100644 index b0fb003..0000000 --- a/doc/bu/files/drawimage_blitex.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title DrawImage_BlitEx [RCBasic Doc] -#header sub DrawImage_BlitEx(slot, x, y, w, h, src_x, src_y, src_w, src_h) - -Draws a portion of an image to the current canvas scaled to a given width and height. - -#ref DrawImage_Blit diff --git a/doc/bu/files/drawimage_flip.txt b/doc/bu/files/drawimage_flip.txt deleted file mode 100644 index 7f55e21..0000000 --- a/doc/bu/files/drawimage_flip.txt +++ /dev/null @@ -1,8 +0,0 @@ -#title DrawImage_Flip [RCBasic Doc] -#header sub DrawImage_Flip(slot, x, y, h, v) - -Draws an image flipped horizontally or vertically. - -Note: h and v are boolean values - -#ref DrawImage_FlipEx diff --git a/doc/bu/files/drawimage_flipex.txt b/doc/bu/files/drawimage_flipex.txt deleted file mode 100644 index 02e7b99..0000000 --- a/doc/bu/files/drawimage_flipex.txt +++ /dev/null @@ -1,8 +0,0 @@ -#title DrawImage_FlipEx [RCBasic Doc] -#header sub DrawImage_FlipEx(slot, x, y, src_x, src_y, src_w, src_h, h, v) - -Draws a portion of an image flipped horizontally or vertically. - -Note: h and v are boolean values - -#ref DrawImage_Flip diff --git a/doc/bu/files/drawimage_rotate.txt b/doc/bu/files/drawimage_rotate.txt deleted file mode 100644 index bcba804..0000000 --- a/doc/bu/files/drawimage_rotate.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title DrawImage_Rotate [RCBasic Doc] -#header sub DrawImage_Rotate(slot, x, y, angle) - -Draws an image to the current canvas rotated by a given angle. diff --git a/doc/bu/files/drawimage_rotateex.txt b/doc/bu/files/drawimage_rotateex.txt deleted file mode 100644 index 6473745..0000000 --- a/doc/bu/files/drawimage_rotateex.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title DrawImage_RotateEx [RCBasic Doc] -#header sub DrawImage_RotateEx(slot, x, y, src_x, src_y, src_w, src_h, angle) - - Draws a portion of an image to the current canvas rotated by a given angle. diff --git a/doc/bu/files/drawimage_rotozoom.txt b/doc/bu/files/drawimage_rotozoom.txt deleted file mode 100644 index 41417e7..0000000 --- a/doc/bu/files/drawimage_rotozoom.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title DrawImage_Rotozoom [RCBasic Doc] -#header sub DrawImage_Rotozoom(slot, x, y, angle, zx, zy) - - Draws an image to the current canvas rotated and scaled diff --git a/doc/bu/files/drawimage_rotozoomex.txt b/doc/bu/files/drawimage_rotozoomex.txt deleted file mode 100644 index 6f41a86..0000000 --- a/doc/bu/files/drawimage_rotozoomex.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title DrawImage_RotozoomEx [RCBasic Doc] -#header sub DrawImage_RotozoomEx(slot, x, y, src_x, src_y, src_w, src_h, angle, zx, zy) - - Draws a portion of an image to the current canvas rotated and scaled diff --git a/doc/bu/files/drawimage_zoom.txt b/doc/bu/files/drawimage_zoom.txt deleted file mode 100644 index 1e12138..0000000 --- a/doc/bu/files/drawimage_zoom.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title DrawImage_Zoom [RCBasic Doc] -#header sub DrawImage_Zoom(slot, x, y, zx, zy) - - Draws an image to the current canvas scaled by a given factor - -#ref DrawImage_ZoomEx diff --git a/doc/bu/files/drawimage_zoomex.txt b/doc/bu/files/drawimage_zoomex.txt deleted file mode 100644 index 35e51bb..0000000 --- a/doc/bu/files/drawimage_zoomex.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title DrawImage_ZoomEx [RCBasic Doc] -#header sub DrawImage_ZoomEx(slot, x, y, src_x, src_y, src_w, src_h, zx, zy) - -Draws a portion of an Image to the current canvas scaled by a given factor - -#ref DrawImage_Zoom diff --git a/doc/bu/files/drawtext.txt b/doc/bu/files/drawtext.txt deleted file mode 100644 index 6a6cbbe..0000000 --- a/doc/bu/files/drawtext.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title DrawText [RCBasic Doc] -#header sub DrawText(txt$, x, y) - - Draws text to the current canvas diff --git a/doc/bu/files/easter.txt b/doc/bu/files/easter.txt deleted file mode 100644 index b5842b3..0000000 --- a/doc/bu/files/easter.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title Easter$ [RCBasic Doc] -#header function Easter$(year) - -Returns easter of the year passed to it. diff --git a/doc/bu/files/ellipse.txt b/doc/bu/files/ellipse.txt deleted file mode 100644 index 5917639..0000000 --- a/doc/bu/files/ellipse.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title Ellipse [RCBasic Doc] -#header sub Ellipse(x,y,rx,ry) - -Draws an ellipse on the current canvas. diff --git a/doc/bu/files/ellipsefill.txt b/doc/bu/files/ellipsefill.txt deleted file mode 100644 index 4b195d6..0000000 --- a/doc/bu/files/ellipsefill.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title EllipseFill [RCBasic Doc] -#header sub EllipseFill(x,y,rx,ry) - -Draws a filled ellipse on the current canvas. diff --git a/doc/bu/files/env.txt b/doc/bu/files/env.txt deleted file mode 100644 index 630b8f0..0000000 --- a/doc/bu/files/env.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title Env$ [RCBasic Doc] -#header function Env$(v$) - -Returns the value of the environment variable passed to it. - -#ref SetEnv diff --git a/doc/bu/files/eof.txt b/doc/bu/files/eof.txt deleted file mode 100644 index 425a8f4..0000000 --- a/doc/bu/files/eof.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title EOF [RCBasic Doc] -#header function EOF(stream) - -Returns true when end of file is reached diff --git a/doc/bu/files/evaljs.txt b/doc/bu/files/evaljs.txt deleted file mode 100644 index 8136032..0000000 --- a/doc/bu/files/evaljs.txt +++ /dev/null @@ -1,8 +0,0 @@ -#title EvalJS$ [RCBasic Doc] -#header Function EvalJS$(js_code$) 'Only useable in Emscripten - -Runs javascript code - -Returns the return value of the javascript code - -NOTE: ONLY WORKS IN WEB PORT diff --git a/doc/bu/files/exp.txt b/doc/bu/files/exp.txt deleted file mode 100644 index 054b1db..0000000 --- a/doc/bu/files/exp.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title Exp [RCBasic Doc] -#header function Exp(n) - -Returns the exponential function of a number. diff --git a/doc/bu/files/fademusicin.txt b/doc/bu/files/fademusicin.txt deleted file mode 100644 index fd48cc6..0000000 --- a/doc/bu/files/fademusicin.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title FadeMusicIn [RCBasic Doc] -#header sub FadeMusicIn(fade_time, loops) - -Fades music in diff --git a/doc/bu/files/fademusicout.txt b/doc/bu/files/fademusicout.txt deleted file mode 100644 index 688c293..0000000 --- a/doc/bu/files/fademusicout.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title FadeMusicOut [RCBasic Doc] -#header sub FadeMusicOut(fade_time) - -Fades music out diff --git a/doc/bu/files/fileexists.txt b/doc/bu/files/fileexists.txt deleted file mode 100644 index 0dee4f5..0000000 --- a/doc/bu/files/fileexists.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title FileExists [RCBasic Doc] -#header function FileExists(fileName$) - -Returns true if a file exists diff --git a/doc/bu/files/filelength.txt b/doc/bu/files/filelength.txt deleted file mode 100644 index 4a1fd6d..0000000 --- a/doc/bu/files/filelength.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title FileLength [RCBasic Doc] -#header function FileLength(fileName$) - - Returns the size of a file in bytes. diff --git a/doc/bu/files/fillmatrix.txt b/doc/bu/files/fillmatrix.txt deleted file mode 100644 index d86419b..0000000 --- a/doc/bu/files/fillmatrix.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title FillMatrix [RCBasic Doc] -#header sub FillMatrix(mA, v) - -Fills matrix with the given value diff --git a/doc/bu/files/fillmatrixcolumns.txt b/doc/bu/files/fillmatrixcolumns.txt deleted file mode 100644 index 45f8649..0000000 --- a/doc/bu/files/fillmatrixcolumns.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title FillMatrixColumns [RCBasic Doc] -#header function FillMatrixColumns(mA, c, num_cols, v) - -Fills matrix columns with the given value starting at the given column diff --git a/doc/bu/files/fillmatrixrows.txt b/doc/bu/files/fillmatrixrows.txt deleted file mode 100644 index 4dfdc39..0000000 --- a/doc/bu/files/fillmatrixrows.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title FillMatrixRows [RCBasic Doc] -#header function FillMatrixRows(mA, r, num_rows, v) - -Fills matrix rows with the given value starting at the given row diff --git a/doc/bu/files/flashwindow.txt b/doc/bu/files/flashwindow.txt deleted file mode 100644 index 9fd4805..0000000 --- a/doc/bu/files/flashwindow.txt +++ /dev/null @@ -1,13 +0,0 @@ -#title FlashWindow [RCBasic Doc] -#header function FlashWindow( flag ) - -Flashes a window to specify an alert - -Returns 0 on success and a negative number on failure - -Possible flag values: -#list ul -#li FLASH_CANCEL -#li FLASH_BRIEFLY -#li FLASH_UNTIL_FOCUSED -#/list diff --git a/doc/bu/files/floodfill.txt b/doc/bu/files/floodfill.txt deleted file mode 100644 index be4b414..0000000 --- a/doc/bu/files/floodfill.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title FloodFill [RCBasic Doc] -#header sub FloodFill(x,y) - -Fills a closed shape in with the current draw color diff --git a/doc/bu/files/fontexists.txt b/doc/bu/files/fontexists.txt deleted file mode 100644 index 9e2c720..0000000 --- a/doc/bu/files/fontexists.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title FontExists [RCBasic Doc] -#header Function FontExists(fnt_id) - -Returns True if the specified font id is associated with a loaded font diff --git a/doc/bu/files/fprint.txt b/doc/bu/files/fprint.txt deleted file mode 100644 index 97b35de..0000000 --- a/doc/bu/files/fprint.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title Fprint [RCBasic Doc] -#header sub Fprint(txt$) - -Outputs text to the console diff --git a/doc/bu/files/fps.txt b/doc/bu/files/fps.txt deleted file mode 100644 index 6e53436..0000000 --- a/doc/bu/files/fps.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title FPS [RCBasic Doc] -#header function FPS() - -Returns the number of frames being rendered per second diff --git a/doc/bu/files/frac.txt b/doc/bu/files/frac.txt deleted file mode 100644 index 369f3b2..0000000 --- a/doc/bu/files/frac.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title Frac [RCBasic Doc] -#header function Frac(n) - -Returns the decimal portion of a number. diff --git a/doc/bu/files/getaccel.txt b/doc/bu/files/getaccel.txt deleted file mode 100644 index 8da28ae..0000000 --- a/doc/bu/files/getaccel.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title GetAccel [RCBasic Doc] -#header sub GetAccel(accel_num, ByRef x, ByRef y, ByRef z) - -Gets the axis values for an accelerometer. diff --git a/doc/bu/files/getactoraabb.txt b/doc/bu/files/getactoraabb.txt deleted file mode 100644 index dda85b1..0000000 --- a/doc/bu/files/getactoraabb.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getActorAABB [RCBasic Doc] -#header sub getActorAABB( actor, ByRef min_x, ByRef min_y, ByRef min_z, ByRef max_x, ByRef max_y, ByRef max_z) - -Gets the bounding box for an actor. diff --git a/doc/bu/files/getactorangulardamping.txt b/doc/bu/files/getactorangulardamping.txt deleted file mode 100644 index dfbe10a..0000000 --- a/doc/bu/files/getactorangulardamping.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title GetActorAngularDamping [RCBasic Doc] -#header function GetActorAngularDamping( actor) - -Returns the amount of angular damping set on the actor - -#ref SetActorDamping ApplyActorDamping GetActorLinearDamping diff --git a/doc/bu/files/getactorangularfactor.txt b/doc/bu/files/getactorangularfactor.txt deleted file mode 100644 index 9edd76b..0000000 --- a/doc/bu/files/getactorangularfactor.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title getActorAngularFactor [RCBasic Doc] -#header sub getActorAngularFactor( actor, ByRef x, ByRef y, ByRef z) - -Returns the angular factor set on an actor - -#ref SetActorAngularFactor GetActorLinearFactor SetActorLinearFactor diff --git a/doc/bu/files/getactorangularsleepthreshold.txt b/doc/bu/files/getactorangularsleepthreshold.txt deleted file mode 100644 index 3eded28..0000000 --- a/doc/bu/files/getactorangularsleepthreshold.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title GetActorAngularSleepThreshold [RCBasic Doc] -#header function GetActorAngularSleepThreshold( actor) - -Returns the Angular deactivation threshold for the actor - -#ref SetActorSleepThresholds GetActorLinearSleepThreshold diff --git a/doc/bu/files/getactorangularvelocitylocal.txt b/doc/bu/files/getactorangularvelocitylocal.txt deleted file mode 100644 index 105a9d3..0000000 --- a/doc/bu/files/getactorangularvelocitylocal.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title getActorAngularVelocityLocal [RCBasic Doc] -#header sub getActorAngularVelocityLocal( actor, ByRef x, ByRef y, ByRef z) - -Gets an actor's Angular Velocity - -#ref GetActorAngularVelocityWorld SetActorAngularVelocityLocal SetActorAngularVelocityWorld diff --git a/doc/bu/files/getactorangularvelocityworld.txt b/doc/bu/files/getactorangularvelocityworld.txt deleted file mode 100644 index 6737f6f..0000000 --- a/doc/bu/files/getactorangularvelocityworld.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title getActorAngularVelocityWorld [RCBasic Doc] -#header sub getActorAngularVelocityWorld( actor, ByRef x, ByRef y, ByRef z) - -Gets an actor's Angular Velocity - -#ref GetActorAngularVelocityLocal SetActorAngularVelocityLocal SetActorAngularVelocityWorld diff --git a/doc/bu/files/getactoranimationspeed.txt b/doc/bu/files/getactoranimationspeed.txt deleted file mode 100644 index 56ab127..0000000 --- a/doc/bu/files/getactoranimationspeed.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title GetActorAnimationSpeed [RCBasic Doc] -#header function GetActorAnimationSpeed( actor ) - -Returns actors animation speed in frames per second diff --git a/doc/bu/files/getactorautoculling.txt b/doc/bu/files/getactorautoculling.txt deleted file mode 100644 index 725b3a1..0000000 --- a/doc/bu/files/getactorautoculling.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title GetActorAutoCulling [RCBasic Doc] -#header function GetActorAutoCulling( actor ) - -Returns True if auto culling is set on the actor diff --git a/doc/bu/files/getactorcollision.txt b/doc/bu/files/getactorcollision.txt deleted file mode 100644 index 4bf4654..0000000 --- a/doc/bu/files/getactorcollision.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title GetActorCollision [RCBasic Doc] -#header function GetActorCollision(actor1, actor2) - -Returns true if 2 actors collide - -Note: This function will work with solid and non solid actors diff --git a/doc/bu/files/getactorcollisionshape.txt b/doc/bu/files/getactorcollisionshape.txt deleted file mode 100644 index 7df0631..0000000 --- a/doc/bu/files/getactorcollisionshape.txt +++ /dev/null @@ -1,18 +0,0 @@ -#title GetActorCollisionShape [RCBasic Doc] -#header function GetActorCollisionShape(actor) - -Returns the actor's collision shape - -Possible values: -#list ul -#li SHAPE_TYPE_NONE -#li SHAPE_TYPE_BOX -#li SHAPE_TYPE_SPHERE -#li SHAPE_TYPE_CYLINDER -#li SHAPE_TYPE_CAPSULE -#li SHAPE_TYPE_CONE -#li SHAPE_TYPE_CONVEXHULL -#li SHAPE_TYPE_TRIMESH -#/list - -#ref SetActorCollisionShape diff --git a/doc/bu/files/getactorcomposition.txt b/doc/bu/files/getactorcomposition.txt deleted file mode 100644 index 0dc7ed3..0000000 --- a/doc/bu/files/getactorcomposition.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getActorCOMPosition [RCBasic Doc] -#header sub getActorCOMPosition( actor, ByRef x, ByRef y, ByRef z) - -Gets an actor's center of mass position. This is useful for setting the origin of constraints. diff --git a/doc/bu/files/getactorcurrentframe.txt b/doc/bu/files/getactorcurrentframe.txt deleted file mode 100644 index 91247b5..0000000 --- a/doc/bu/files/getactorcurrentframe.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title GetActorCurrentFrame [RCBasic Doc] -#header function GetActorCurrentFrame( actor ) - -Returns an actor's current frame of animation diff --git a/doc/bu/files/getactorendframe.txt b/doc/bu/files/getactorendframe.txt deleted file mode 100644 index d4bd288..0000000 --- a/doc/bu/files/getactorendframe.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title GetActorEndFrame [RCBasic Doc] -#header function GetActorEndFrame( actor ) - -Returns the last frame of an actor's animation diff --git a/doc/bu/files/getactorgravity.txt b/doc/bu/files/getactorgravity.txt deleted file mode 100644 index 56b0dd8..0000000 --- a/doc/bu/files/getactorgravity.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title GetActorGravity [RCBasic Doc] -#header sub GetActorGravity( actor, ByRef x, ByRef y, ByRef z ) - -Gets the gravity of an actor along each access. - -#ref SetActorGravity diff --git a/doc/bu/files/getactorinverseinertiadiaglocal.txt b/doc/bu/files/getactorinverseinertiadiaglocal.txt deleted file mode 100644 index 073f848..0000000 --- a/doc/bu/files/getactorinverseinertiadiaglocal.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getActorInverseInertiaDiagLocal [RCBasic Doc] -#header sub getActorInverseInertiaDiagLocal( actor, ByRef x, ByRef y, ByRef z) - -Gets the inverse of the inertia tensor's diagonal components in the local space. This is used to compute how the actor reacts to rotational forces (torques) applied to it. diff --git a/doc/bu/files/getactorinversemass.txt b/doc/bu/files/getactorinversemass.txt deleted file mode 100644 index f0d430a..0000000 --- a/doc/bu/files/getactorinversemass.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title getActorInverseMass [RCBasic Doc] -#header function getActorInverseMass( actor) - -Returns an actor's inverse mass - - diff --git a/doc/bu/files/getactorlineardamping.txt b/doc/bu/files/getactorlineardamping.txt deleted file mode 100644 index 29d4708..0000000 --- a/doc/bu/files/getactorlineardamping.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title GetActorLinearDamping [RCBasic Doc] -#header function GetActorLinearDamping( actor) - -Return's an actor's linear damping - -#ref SetActorDamping GetActorAngularDamping diff --git a/doc/bu/files/getactorlinearfactor.txt b/doc/bu/files/getactorlinearfactor.txt deleted file mode 100644 index 3967933..0000000 --- a/doc/bu/files/getactorlinearfactor.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title GetActorLinearFactor [RCBasic Doc] -#header sub GetActorLinearFactor( actor, ByRef x, ByRef y, ByRef z) - -Gets an actor's linear factor - -#ref SetActorLinearFactor GetActorAngularFactor SetActorAngularFactor diff --git a/doc/bu/files/getactorlinearsleepthreshold.txt b/doc/bu/files/getactorlinearsleepthreshold.txt deleted file mode 100644 index fb22817..0000000 --- a/doc/bu/files/getactorlinearsleepthreshold.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title GetActorLinearSleepThreshold [RCBasic Doc] -#header function GetActorLinearSleepThreshold( actor) - -Returns the linear deactivation threshold for the actor - -#ref SetActorSleepThresholds GetActorAngularSleepThreshold diff --git a/doc/bu/files/getactorlinearvelocitylocal.txt b/doc/bu/files/getactorlinearvelocitylocal.txt deleted file mode 100644 index a7539bd..0000000 --- a/doc/bu/files/getactorlinearvelocitylocal.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title GetActorLinearVelocityLocal [RCBasic Doc] -#header sub GetActorLinearVelocityLocal( actor, ByRef x, ByRef y, ByRef z) - -Gets actor's linear velocity - -#ref SetActorLinearVelocityLocal SetActorLinearVelocityWorld diff --git a/doc/bu/files/getactorlinearvelocityworld.txt b/doc/bu/files/getactorlinearvelocityworld.txt deleted file mode 100644 index 52ee7d8..0000000 --- a/doc/bu/files/getactorlinearvelocityworld.txt +++ /dev/null @@ -1,7 +0,0 @@ -#title getActorLinearVelocityWorld [RCBasic Doc] -#header sub getActorLinearVelocityWorld( actor, ByRef x, ByRef y, ByRef z) - -Gets actor's linear velocity - -#ref SetActorLinearVelocityLocal SetActorLinearVelocityWorld - diff --git a/doc/bu/files/getactorlocalinertia.txt b/doc/bu/files/getactorlocalinertia.txt deleted file mode 100644 index 7bf348c..0000000 --- a/doc/bu/files/getactorlocalinertia.txt +++ /dev/null @@ -1,5 +0,0 @@ -#title GetActorLocalInertia [RCBasic Doc] -#header sub GetActorLocalInertia( actor, ByRef x, ByRef y, ByRef z) - -Gets the local inertia tensor of an actor. The inertia tensor describes how an actor resists rotational motion depending on its mass distribution relative to its center of mass. - diff --git a/doc/bu/files/getactormaterial.txt b/doc/bu/files/getactormaterial.txt deleted file mode 100644 index 13d1356..0000000 --- a/doc/bu/files/getactormaterial.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title getActorMaterial [RCBasic Doc] -#header function getActorMaterial( actor, material_num) - -Returns an actor's material id. - -Actor's can have multiple materials but generally you want material 0 for most Actor's. diff --git a/doc/bu/files/getactormaterialcount.txt b/doc/bu/files/getactormaterialcount.txt deleted file mode 100644 index 6e1f86e..0000000 --- a/doc/bu/files/getactormaterialcount.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getActorMaterialCount [RCBasic Doc] -#header function getActorMaterialCount( actor) - -Returns the number of materials for an actor. diff --git a/doc/bu/files/getactormaterialflag.txt b/doc/bu/files/getactormaterialflag.txt deleted file mode 100644 index 303363d..0000000 --- a/doc/bu/files/getactormaterialflag.txt +++ /dev/null @@ -1,30 +0,0 @@ -#title getActorMaterialFlag [RCBasic Doc] -#header function getActorMaterialFlag( actor, material, flag) - -Returns the value of the specified material flag - -Possible values for flag: -#list -#li MATERIAL_FLAG_WIREFRAME  -#li MATERIAL_FLAG_POINTCLOUD  -#li MATERIAL_FLAG_GOURAUD_SHADING  -#li MATERIAL_FLAG_LIGHTING  -#li MATERIAL_FLAG_ZBUFFER  -#li MATERIAL_FLAG_ZWRITE_ENABLE  -#li MATERIAL_FLAG_BACK_FACE_CULLING  -#li MATERIAL_FLAG_FRONT_FACE_CULLING  -#li MATERIAL_FLAG_BILINEAR_FILTER  -#li MATERIAL_FLAG_TRILINEAR_FILTER  -#li MATERIAL_FLAG_ANISOTROPIC_FILTER  -#li MATERIAL_FLAG_FOG_ENABLE  -#li MATERIAL_FLAG_NORMALIZE_NORMALS  -#li MATERIAL_FLAG_TEXTURE_WRAP  -#li MATERIAL_FLAG_ANTI_ALIASING  -#li MATERIAL_FLAG_COLOR_MASK  -#li MATERIAL_FLAG_COLOR_MATERIAL  -#li MATERIAL_FLAG_USE_MIP_MAPS  -#li MATERIAL_FLAG_BLEND_OPERATION  -#li MATERIAL_FLAG_POLYGON_OFFSET  -#/list - -#ref GetMaterialFlag diff --git a/doc/bu/files/getactormaterialtype.txt b/doc/bu/files/getactormaterialtype.txt deleted file mode 100644 index ac3b570..0000000 --- a/doc/bu/files/getactormaterialtype.txt +++ /dev/null @@ -1,35 +0,0 @@ -#title GetActorMaterialType [RCBasic Doc] -#header function GetActorMaterialType( actor, material ) - -Returns the material type of an actor material - -Possible material types -#list ul -#li MATERIAL_TYPE_SOLID  -#li MATERIAL_TYPE_SOLID_2_LAYER  -#li MATERIAL_TYPE_LIGHTMAP  -#li MATERIAL_TYPE_LIGHTMAP_ADD  -#li MATERIAL_TYPE_LIGHTMAP_M2  -#li MATERIAL_TYPE_LIGHTMAP_M4  -#li MATERIAL_TYPE_LIGHTMAP_LIGHTING  -#li MATERIAL_TYPE_LIGHTMAP_LIGHTING_M2  -#li MATERIAL_TYPE_LIGHTMAP_LIGHTING_M4  -#li MATERIAL_TYPE_DETAIL_MAP  -#li MATERIAL_TYPE_SPHERE_MAP  -#li MATERIAL_TYPE_REFLECTION_2_LAYER  -#li MATERIAL_TYPE_TRANSPARENT_ADD_COLOR  -#li MATERIAL_TYPE_TRANSPARENT_ALPHA_CHANNEL  -#li MATERIAL_TYPE_TRANSPARENT_ALPHA_CHANNEL_REF  -#li MATERIAL_TYPE_TRANSPARENT_VERTEX_ALPHA  -#li MATERIAL_TYPE_TRANSPARENT_REFLECTION_2_LAYER  -#li MATERIAL_TYPE_NORMAL_MAP_SOLID  -#li MATERIAL_TYPE_NORMAL_MAP_TRANSPARENT_ADD_COLOR  -#li MATERIAL_TYPE_NORMAL_MAP_TRANSPARENT_VERTEX_ALPHA  -#li MATERIAL_TYPE_PARALLAX_MAP_SOLID  -#li MATERIAL_TYPE_PARALLAX_MAP_TRANSPARENT_ADD_COLOR  -#li MATERIAL_TYPE_PARALLAX_MAP_TRANSPARENT_VERTEX_ALPHA  -#li MATERIAL_TYPE_ONETEXTURE_BLEND  -#li MATERIAL_TYPE_FORCE_32BIT  -#/list - -#ref SetActorMaterialType GetMaterialType SetMaterialType diff --git a/doc/bu/files/getactorposition.txt b/doc/bu/files/getactorposition.txt deleted file mode 100644 index 5e8dc69..0000000 --- a/doc/bu/files/getactorposition.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title GetActorPosition [RCBasic Doc] -#header sub GetActorPosition( actor, ByRef x, ByRef y, ByRef z ) - -Gets the actors position - -#ref SetActorPosition diff --git a/doc/bu/files/getactorrotation.txt b/doc/bu/files/getactorrotation.txt deleted file mode 100644 index b8c5909..0000000 --- a/doc/bu/files/getactorrotation.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title GetActorRotation [RCBasic Doc] -#header sub GetActorRotation( actor, ByRef x, ByRef y, ByRef z ) - -Gets the actors rotation on each axis - -#ref SetActorRotation diff --git a/doc/bu/files/getactorrotationq.txt b/doc/bu/files/getactorrotationq.txt deleted file mode 100644 index b7c0450..0000000 --- a/doc/bu/files/getactorrotationq.txt +++ /dev/null @@ -1,8 +0,0 @@ -#title GetActorRotationQ [RCBasic Doc] -#header sub GetActorRotationQ( actor, ByRef x, ByRef y, ByRef z, ByRef w) - -Gets the actors rotation as a quaternion. - -Note: This is useful for calculations that require quaternion but most developers should just use GetActorRotation() - -#ref GetActorRotation SetActorRotation diff --git a/doc/bu/files/getactorscale.txt b/doc/bu/files/getactorscale.txt deleted file mode 100644 index d3d1064..0000000 --- a/doc/bu/files/getactorscale.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title GetActorScale [RCBasic Doc] -#header sub GetActorScale( actor, ByRef x, ByRef y, ByRef z ) - -Gets an actor's scale - -#ref SetActorScale diff --git a/doc/bu/files/getactorstartframe.txt b/doc/bu/files/getactorstartframe.txt deleted file mode 100644 index a48bd45..0000000 --- a/doc/bu/files/getactorstartframe.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title GetActorStartFrame [RCBasic Doc] -#header function GetActorStartFrame( actor ) - -Returns the start frame of an actor's animation diff --git a/doc/bu/files/getactortotalforce.txt b/doc/bu/files/getactortotalforce.txt deleted file mode 100644 index e891630..0000000 --- a/doc/bu/files/getactortotalforce.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title GetActorTotalForce [RCBasic Doc] -#header sub GetActorTotalForce( actor, ByRef x, ByRef y, ByRef z) - -Gets the total net force currently acting on an actor. This force is the sum of all external forces applied to the actor at a given point in time, including forces like gravity, applied forces, and other interactions such as contact or collision forces. - -#ref GetActorTotalTorque diff --git a/doc/bu/files/getactortotaltorque.txt b/doc/bu/files/getactortotaltorque.txt deleted file mode 100644 index 04516d8..0000000 --- a/doc/bu/files/getactortotaltorque.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title GetActorTotalTorque [RCBasic Doc] -#header sub GetActorTotalTorque( actor, ByRef x, ByRef y, ByRef z) - -Gets the total net torque currently acting on an actor. Torque represents the rotational equivalent of force, describing how different forces applied to the actor cause it to rotate. The total torque is the sum of all external torques acting on the actor, which determine how the actor will rotate or change its angular velocity. - -#ref GetTotalForces diff --git a/doc/bu/files/getactortransform.txt b/doc/bu/files/getactortransform.txt deleted file mode 100644 index fb7ecac..0000000 --- a/doc/bu/files/getactortransform.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title GetActorTransform [RCBasic Doc] -#header sub GetActorTransform( actor, matrix ) - -Stores the actors absolute transformation in the given matrix diff --git a/doc/bu/files/getactortransitiontime.txt b/doc/bu/files/getactortransitiontime.txt deleted file mode 100644 index 7bb2714..0000000 --- a/doc/bu/files/getactortransitiontime.txt +++ /dev/null @@ -1,8 +0,0 @@ -#title GetActorTransitionTime [RCBasic Doc] -#header function GetActorTransitionTime( actor ) - -Returns the total transition time of an actor transitioning between animations - -Note: Time returned is in seconds - -#ref StartActorTransition StopActorTransition ActorIsInTransition diff --git a/doc/bu/files/getbilinearfilter.txt b/doc/bu/files/getbilinearfilter.txt deleted file mode 100644 index 1cfdac2..0000000 --- a/doc/bu/files/getbilinearfilter.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title GetBilinearFilter [RCBasic Doc] -#header function GetBilinearFilter() - -Returns true if bilinear filtering is enabled - -#ref SetBilinearFilter diff --git a/doc/bu/files/getblendmode.txt b/doc/bu/files/getblendmode.txt deleted file mode 100644 index de35dd7..0000000 --- a/doc/bu/files/getblendmode.txt +++ /dev/null @@ -1,22 +0,0 @@ -#title GetBlendMode [RCBasic Doc] -#header function GetBlendMode( ) - -Returns the current blend mode - -Note: Only applies to 2D image drawing commands - -Possible Blend Modes -#list ul -#li BLEND_MODE_NONE -#li BLEND_MODE_ADD -#li BLEND_MODE_SUBTRACT -#li BLEND_MODE_REVSUBTRACT -#li BLEND_MODE_MIN -#li BLEND_MODE_MAX -#li BLEND_MODE_MIN_FACTOR -#li BLEND_MODE_MAX_FACTOR -#li BLEND_MODE_MIN_ALPHA -#li BLEND_MODE_MAX_ALPHA -#/list - -#ref SetBlendMode diff --git a/doc/bu/files/getcameraaspectratio.txt b/doc/bu/files/getcameraaspectratio.txt deleted file mode 100644 index afd5638..0000000 --- a/doc/bu/files/getcameraaspectratio.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title GetCameraAspectRatio [RCBasic Doc] -#header function GetCameraAspectRatio( ) - -Returns the camera aspect ratio for the active canvas - -#ref SetCameraAspectRatio diff --git a/doc/bu/files/getcamerafarvalue.txt b/doc/bu/files/getcamerafarvalue.txt deleted file mode 100644 index 02ad686..0000000 --- a/doc/bu/files/getcamerafarvalue.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title GetCameraFarValue [RCBasic Doc] -#header function GetCameraFarValue( ) - -Returns the far plane of the camera on the active canvas - -#ref GetCameraNearValue diff --git a/doc/bu/files/getcamerafov.txt b/doc/bu/files/getcamerafov.txt deleted file mode 100644 index 847d494..0000000 --- a/doc/bu/files/getcamerafov.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title GetCameraFOV [RCBasic Doc] -#header function GetCameraFOV( ) - -Returns the field of view of the camera on the active canvas diff --git a/doc/bu/files/getcameranearvalue.txt b/doc/bu/files/getcameranearvalue.txt deleted file mode 100644 index cbbeeda..0000000 --- a/doc/bu/files/getcameranearvalue.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title GetCameraNearValue [RCBasic Doc] -#header function GetCameraNearValue( ) - -Returns the near plane of the camera on the active canvas - -#ref GetCameraFarValue diff --git a/doc/bu/files/getcameraposition.txt b/doc/bu/files/getcameraposition.txt deleted file mode 100644 index bfbf333..0000000 --- a/doc/bu/files/getcameraposition.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title GetCameraPosition [RCBasic Doc] -#header sub GetCameraPosition(ByRef x, ByRef y, ByRef z) - -Gets the position of the camera - -#ref SetCameraPosition TranslateCamera diff --git a/doc/bu/files/getcamerarotation.txt b/doc/bu/files/getcamerarotation.txt deleted file mode 100644 index 5768652..0000000 --- a/doc/bu/files/getcamerarotation.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title GetCameraRotation [RCBasic Doc] -#header sub GetCameraRotation(ByRef x, ByRef y, ByRef z) - -Gets the rotation of the camera on each axis - -#ref SetCameraRotation RotateCamera diff --git a/doc/bu/files/getcanvasalpha.txt b/doc/bu/files/getcanvasalpha.txt deleted file mode 100644 index 10e1bf0..0000000 --- a/doc/bu/files/getcanvasalpha.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title GetCanvasAlpha [RCBasic Doc] -#header function GetCanvasAlpha(c_num) - -Returns the alpha blend value of a canvas - -#ref SetCanvasAlpha diff --git a/doc/bu/files/getcanvascolormod.txt b/doc/bu/files/getcanvascolormod.txt deleted file mode 100644 index 6842661..0000000 --- a/doc/bu/files/getcanvascolormod.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title GetCanvasColorMod [RCBasic Doc] -#header function GetCanvasColorMod(c_num) - -Returns the color modulation of a canvas - -#ref SetCanvasColorMod diff --git a/doc/bu/files/getcanvasoffset.txt b/doc/bu/files/getcanvasoffset.txt deleted file mode 100644 index c35d618..0000000 --- a/doc/bu/files/getcanvasoffset.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title GetCanvasOffset [RCBasic Doc] -#header sub GetCanvasOffset(c_num, byref x, byref y) - -Returns view offset of a canvas - -#ref SetCanvasOffset diff --git a/doc/bu/files/getcanvassize.txt b/doc/bu/files/getcanvassize.txt deleted file mode 100644 index bdb68af..0000000 --- a/doc/bu/files/getcanvassize.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title GetCanvasSize [RCBasic Doc] -#header sub GetCanvasSize(c_num, byref w, byref h) - -Gets the size of a canvas diff --git a/doc/bu/files/getcanvasviewport.txt b/doc/bu/files/getcanvasviewport.txt deleted file mode 100644 index 99ad32c..0000000 --- a/doc/bu/files/getcanvasviewport.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title GetCanvasViewport [RCBasic Doc] -#header sub GetCanvasViewport(c_num, byref x, byref y, byref w, byref h) - -Gets the position and size of a canvas viewport - -#ref OpenCanvas SetCanvasViewport diff --git a/doc/bu/files/getcanvasz.txt b/doc/bu/files/getcanvasz.txt deleted file mode 100644 index d82f672..0000000 --- a/doc/bu/files/getcanvasz.txt +++ /dev/null @@ -1,8 +0,0 @@ -#title GetCanvasZ [RCBasic Doc] -#header function GetCanvasZ(c_num) - -Returns the Canvas Z Order. - -Note: Canvases with a lower Z order are drawn first and those with higher values will be drawn on top - -#ref SetCanvasZ diff --git a/doc/bu/files/getchannelvolume.txt b/doc/bu/files/getchannelvolume.txt deleted file mode 100644 index 1101b98..0000000 --- a/doc/bu/files/getchannelvolume.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title GetChannelVolume [RCBasic Doc] -#header function GetChannelVolume(channel) - -Returns the volume of the audio on a channel diff --git a/doc/bu/files/getcirclelineintersection.txt b/doc/bu/files/getcirclelineintersection.txt deleted file mode 100644 index 1026aba..0000000 --- a/doc/bu/files/getcirclelineintersection.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title GetCircleLineIntersection [RCBasic Doc] -#header function GetCircleLineIntersection(circle_x, circle_y, radius, x1, y1, x2, y2, ByRef ix1, ByRef iy1, ByRef ix2, ByRef iy2) - -Calculates the points where a circle and line intersect and stores the intersection points in (ix1, iy1) and (ix2, iy2) - -NOTE: This function returns 0 if there is no intersection and 1 or 2 if there is 1 or 2 intersection points. If it only returns 1 then only (ix1, iy1) will be set. diff --git a/doc/bu/files/getclipboardtext.txt b/doc/bu/files/getclipboardtext.txt deleted file mode 100644 index 46fc3dc..0000000 --- a/doc/bu/files/getclipboardtext.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title GetClipboardText$ [RCBasic Doc] -#header function GetClipboardText$( ) - -Returns the clipboard text. diff --git a/doc/bu/files/getconstraintactora.txt b/doc/bu/files/getconstraintactora.txt deleted file mode 100644 index 2a5767f..0000000 --- a/doc/bu/files/getconstraintactora.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getConstraintActorA [RCBasic Doc] -#header function getConstraintActorA( constraint_id) - -Returns the first actor in a constraint diff --git a/doc/bu/files/getconstraintactorb.txt b/doc/bu/files/getconstraintactorb.txt deleted file mode 100644 index b4bb449..0000000 --- a/doc/bu/files/getconstraintactorb.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getConstraintActorB [RCBasic Doc] -#header function getConstraintActorB( constraint_id) - -Returns the second actor in a constraint diff --git a/doc/bu/files/getconstraintaframe.txt b/doc/bu/files/getconstraintaframe.txt deleted file mode 100644 index 08d4376..0000000 --- a/doc/bu/files/getconstraintaframe.txt +++ /dev/null @@ -1,8 +0,0 @@ -#title GetConstraintAFrame [RCBasic Doc] -#header function GetConstraintAFrame( constraint_id, mA) - -Stores the transform of the first actor in a constraint in mA - -Note: Only applies to cone and hinge constraints - -#ref GetConstraintBFrame diff --git a/doc/bu/files/getconstraintanchora.txt b/doc/bu/files/getconstraintanchora.txt deleted file mode 100644 index 9d26062..0000000 --- a/doc/bu/files/getconstraintanchora.txt +++ /dev/null @@ -1,8 +0,0 @@ -#title GetConstraintAnchorA [RCBasic Doc] -#header sub GetConstraintAnchorA( constraint_id, ByRef x, ByRef y, ByRef z) - -Gets the anchor point of the first actor in world space, where the slider constraint is acting on the actor. This point represents the location of the slider's reference frame on body A in the global coordinate system. - -Note: Only applies to Slider constraints - -#ref GetConstraintAnchorB diff --git a/doc/bu/files/getconstraintanchorb.txt b/doc/bu/files/getconstraintanchorb.txt deleted file mode 100644 index 63500ff..0000000 --- a/doc/bu/files/getconstraintanchorb.txt +++ /dev/null @@ -1,8 +0,0 @@ -#title GetConstraintAnchorB [RCBasic Doc] -#header sub GetConstraintAnchorB( constraint_id, ByRef x, ByRef y, ByRef z) - -Gets the anchor point of the first actor in world space, where the slider constraint is acting on the actor. This point represents the location of the slider's reference frame on body B in the global coordinate system. - -Note: Only applies to Slider constraints - -#ref GetConstraintAnchorA diff --git a/doc/bu/files/getconstraintangdepth.txt b/doc/bu/files/getconstraintangdepth.txt deleted file mode 100644 index c8e294b..0000000 --- a/doc/bu/files/getconstraintangdepth.txt +++ /dev/null @@ -1,7 +0,0 @@ -#title GetConstraintAngDepth [RCBasic Doc] -#header function GetConstraintAngDepth( constraint_id) - -Gets the angular depth or the angular deviation from the expected orientation of the two actors (or one actor and the world) constrained by the slider. This "angular depth" refers to how much the actors are misaligned rotationally relative to the constraint’s expected or allowed configuration. - - -Note: Only applies to Slider constraints diff --git a/doc/bu/files/getconstraintanglepoint.txt b/doc/bu/files/getconstraintanglepoint.txt deleted file mode 100644 index 0b6cfed..0000000 --- a/doc/bu/files/getconstraintanglepoint.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title getConstraintAnglePoint [RCBasic Doc] -#header sub getConstraintAnglePoint( constraint_id, angle, c_len, ByRef x, ByRef y, ByRef z) - -Computes or retrieves a point based on a given angle relative to the constraint’s twist axis. - -Note: Only applies to cone constraint diff --git a/doc/bu/files/getconstraintangularonly.txt b/doc/bu/files/getconstraintangularonly.txt deleted file mode 100644 index 3e57409..0000000 --- a/doc/bu/files/getconstraintangularonly.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getConstraintAngularOnly [RCBasic Doc] -#header function getConstraintAngularOnly( constraint_id) - - diff --git a/doc/bu/files/getconstraintangularpos.txt b/doc/bu/files/getconstraintangularpos.txt deleted file mode 100644 index 660b04a..0000000 --- a/doc/bu/files/getconstraintangularpos.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getConstraintAngularPos [RCBasic Doc] -#header function getConstraintAngularPos( constraint_id) - - diff --git a/doc/bu/files/getconstraintappliedimpulse.txt b/doc/bu/files/getconstraintappliedimpulse.txt deleted file mode 100644 index 180117a..0000000 --- a/doc/bu/files/getconstraintappliedimpulse.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getConstraintAppliedImpulse [RCBasic Doc] -#header function getConstraintAppliedImpulse( constraint_id) - - diff --git a/doc/bu/files/getconstraintbframe.txt b/doc/bu/files/getconstraintbframe.txt deleted file mode 100644 index 1419f08..0000000 --- a/doc/bu/files/getconstraintbframe.txt +++ /dev/null @@ -1,8 +0,0 @@ -#title GetConstraintBFrame [RCBasic Doc] -#header function GetConstraintBFrame( constraint_id, mA) - -Stores the transform of the second actor in a constraint in mA - -Note: Only applies to cone and hinge constraints - -#ref GetConstraintAFrame diff --git a/doc/bu/files/getconstraintbiasfactor.txt b/doc/bu/files/getconstraintbiasfactor.txt deleted file mode 100644 index c03fb4e..0000000 --- a/doc/bu/files/getconstraintbiasfactor.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getConstraintBiasFactor [RCBasic Doc] -#header function getConstraintBiasFactor( constraint_id) - - diff --git a/doc/bu/files/getconstraintbreakingimpulsethreshold.txt b/doc/bu/files/getconstraintbreakingimpulsethreshold.txt deleted file mode 100644 index 48f058a..0000000 --- a/doc/bu/files/getconstraintbreakingimpulsethreshold.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getConstraintBreakingImpulseThreshold [RCBasic Doc] -#header function getConstraintBreakingImpulseThreshold( constraint_id) - - diff --git a/doc/bu/files/getconstraintdamping.txt b/doc/bu/files/getconstraintdamping.txt deleted file mode 100644 index 5bcacaf..0000000 --- a/doc/bu/files/getconstraintdamping.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getConstraintDamping [RCBasic Doc] -#header function getConstraintDamping( constraint_id) - - diff --git a/doc/bu/files/getconstraintdampingdirang.txt b/doc/bu/files/getconstraintdampingdirang.txt deleted file mode 100644 index ec7455d..0000000 --- a/doc/bu/files/getconstraintdampingdirang.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getConstraintDampingDirAng [RCBasic Doc] -#header function getConstraintDampingDirAng( constraint_id) - - diff --git a/doc/bu/files/getconstraintdampingdirlin.txt b/doc/bu/files/getconstraintdampingdirlin.txt deleted file mode 100644 index 3be12ab..0000000 --- a/doc/bu/files/getconstraintdampingdirlin.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getConstraintDampingDirLin [RCBasic Doc] -#header function getConstraintDampingDirLin( constraint_id) - - diff --git a/doc/bu/files/getconstraintdampinglimang.txt b/doc/bu/files/getconstraintdampinglimang.txt deleted file mode 100644 index 26e8479..0000000 --- a/doc/bu/files/getconstraintdampinglimang.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getConstraintDampingLimAng [RCBasic Doc] -#header function getConstraintDampingLimAng( constraint_id) - - diff --git a/doc/bu/files/getconstraintdampinglimlin.txt b/doc/bu/files/getconstraintdampinglimlin.txt deleted file mode 100644 index be91d76..0000000 --- a/doc/bu/files/getconstraintdampinglimlin.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getConstraintDampingLimLin [RCBasic Doc] -#header function getConstraintDampingLimLin( constraint_id) - - diff --git a/doc/bu/files/getconstraintdampingorthoang.txt b/doc/bu/files/getconstraintdampingorthoang.txt deleted file mode 100644 index bfd17bb..0000000 --- a/doc/bu/files/getconstraintdampingorthoang.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getConstraintDampingOrthoAng [RCBasic Doc] -#header function getConstraintDampingOrthoAng( constraint_id) - - diff --git a/doc/bu/files/getconstraintdampingortholin.txt b/doc/bu/files/getconstraintdampingortholin.txt deleted file mode 100644 index 30a043d..0000000 --- a/doc/bu/files/getconstraintdampingortholin.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getConstraintDampingOrthoLin [RCBasic Doc] -#header function getConstraintDampingOrthoLin( constraint_id) - - diff --git a/doc/bu/files/getconstraintfixedactor.txt b/doc/bu/files/getconstraintfixedactor.txt deleted file mode 100644 index 57e4599..0000000 --- a/doc/bu/files/getconstraintfixedactor.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getConstraintFixedActor [RCBasic Doc] -#header function getConstraintFixedActor( constraint_id) - - diff --git a/doc/bu/files/getconstraintfixthresh.txt b/doc/bu/files/getconstraintfixthresh.txt deleted file mode 100644 index bbd8049..0000000 --- a/doc/bu/files/getconstraintfixthresh.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getConstraintFixThresh [RCBasic Doc] -#header function getConstraintFixThresh( constraint_id) - - diff --git a/doc/bu/files/getconstraintframeoffseta.txt b/doc/bu/files/getconstraintframeoffseta.txt deleted file mode 100644 index c6fea6a..0000000 --- a/doc/bu/files/getconstraintframeoffseta.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getConstraintFrameOffsetA [RCBasic Doc] -#header sub getConstraintFrameOffsetA( constraint_id, ByRef x, ByRef y, ByRef z, ByRef rx, ByRef ry, ByRef rz) - - diff --git a/doc/bu/files/getconstraintframeoffsetb.txt b/doc/bu/files/getconstraintframeoffsetb.txt deleted file mode 100644 index 01130ad..0000000 --- a/doc/bu/files/getconstraintframeoffsetb.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getConstraintFrameOffsetB [RCBasic Doc] -#header sub getConstraintFrameOffsetB( constraint_id, ByRef x, ByRef y, ByRef z, ByRef rx, ByRef ry, ByRef rz) - - diff --git a/doc/bu/files/getconstraintlimit.txt b/doc/bu/files/getconstraintlimit.txt deleted file mode 100644 index 608577e..0000000 --- a/doc/bu/files/getconstraintlimit.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getConstraintLimit [RCBasic Doc] -#header function getConstraintLimit( constraint_id, limit_index) - - diff --git a/doc/bu/files/getconstraintlimitbiasfactor.txt b/doc/bu/files/getconstraintlimitbiasfactor.txt deleted file mode 100644 index 8abe447..0000000 --- a/doc/bu/files/getconstraintlimitbiasfactor.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getConstraintLimitBiasFactor [RCBasic Doc] -#header function getConstraintLimitBiasFactor( constraint_id) - - diff --git a/doc/bu/files/getconstraintlimitsign.txt b/doc/bu/files/getconstraintlimitsign.txt deleted file mode 100644 index d96d0fd..0000000 --- a/doc/bu/files/getconstraintlimitsign.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getConstraintLimitSign [RCBasic Doc] -#header function getConstraintLimitSign( constraint_id) - - diff --git a/doc/bu/files/getconstraintlimitsoftness.txt b/doc/bu/files/getconstraintlimitsoftness.txt deleted file mode 100644 index 4a653d5..0000000 --- a/doc/bu/files/getconstraintlimitsoftness.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getConstraintLimitSoftness [RCBasic Doc] -#header function getConstraintLimitSoftness( constraint_id) - - diff --git a/doc/bu/files/getconstraintlindepth.txt b/doc/bu/files/getconstraintlindepth.txt deleted file mode 100644 index 7adf880..0000000 --- a/doc/bu/files/getconstraintlindepth.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getConstraintLinDepth [RCBasic Doc] -#header function getConstraintLinDepth( constraint_id) - - diff --git a/doc/bu/files/getconstraintlinearpos.txt b/doc/bu/files/getconstraintlinearpos.txt deleted file mode 100644 index 0af783a..0000000 --- a/doc/bu/files/getconstraintlinearpos.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getConstraintLinearPos [RCBasic Doc] -#header function getConstraintLinearPos( constraint_id) - - diff --git a/doc/bu/files/getconstraintloweranglimit.txt b/doc/bu/files/getconstraintloweranglimit.txt deleted file mode 100644 index 394bf21..0000000 --- a/doc/bu/files/getconstraintloweranglimit.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getConstraintLowerAngLimit [RCBasic Doc] -#header function getConstraintLowerAngLimit( constraint_id) - - diff --git a/doc/bu/files/getconstraintlowerlinlimit.txt b/doc/bu/files/getconstraintlowerlinlimit.txt deleted file mode 100644 index e35a996..0000000 --- a/doc/bu/files/getconstraintlowerlinlimit.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getConstraintLowerLinLimit [RCBasic Doc] -#header function getConstraintLowerLinLimit( constraint_id) - - diff --git a/doc/bu/files/getconstraintpivota.txt b/doc/bu/files/getconstraintpivota.txt deleted file mode 100644 index 7f3f56f..0000000 --- a/doc/bu/files/getconstraintpivota.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getConstraintPivotA [RCBasic Doc] -#header sub getConstraintPivotA( constraint_id, ByRef x, ByRef y, ByRef z) - - diff --git a/doc/bu/files/getconstraintpivotb.txt b/doc/bu/files/getconstraintpivotb.txt deleted file mode 100644 index 7426ede..0000000 --- a/doc/bu/files/getconstraintpivotb.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getConstraintPivotB [RCBasic Doc] -#header sub getConstraintPivotB( constraint_id, ByRef x, ByRef y, ByRef z) - - diff --git a/doc/bu/files/getconstraintrestitutiondirang.txt b/doc/bu/files/getconstraintrestitutiondirang.txt deleted file mode 100644 index 07920a4..0000000 --- a/doc/bu/files/getconstraintrestitutiondirang.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getConstraintRestitutionDirAng [RCBasic Doc] -#header function getConstraintRestitutionDirAng( constraint_id) - - diff --git a/doc/bu/files/getconstraintrestitutiondirlin.txt b/doc/bu/files/getconstraintrestitutiondirlin.txt deleted file mode 100644 index c8e4226..0000000 --- a/doc/bu/files/getconstraintrestitutiondirlin.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getConstraintRestitutionDirLin [RCBasic Doc] -#header function getConstraintRestitutionDirLin( constraint_id) - - diff --git a/doc/bu/files/getconstraintrestitutionlimang.txt b/doc/bu/files/getconstraintrestitutionlimang.txt deleted file mode 100644 index 3f3a8c5..0000000 --- a/doc/bu/files/getconstraintrestitutionlimang.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getConstraintRestitutionLimAng [RCBasic Doc] -#header function getConstraintRestitutionLimAng( constraint_id) - - diff --git a/doc/bu/files/getconstraintrestitutionlimlin.txt b/doc/bu/files/getconstraintrestitutionlimlin.txt deleted file mode 100644 index 33e665c..0000000 --- a/doc/bu/files/getconstraintrestitutionlimlin.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getConstraintRestitutionLimLin [RCBasic Doc] -#header function getConstraintRestitutionLimLin( constraint_id) - - diff --git a/doc/bu/files/getconstraintrestitutionorthoang.txt b/doc/bu/files/getconstraintrestitutionorthoang.txt deleted file mode 100644 index 48e7777..0000000 --- a/doc/bu/files/getconstraintrestitutionorthoang.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getConstraintRestitutionOrthoAng [RCBasic Doc] -#header function getConstraintRestitutionOrthoAng( constraint_id) - - diff --git a/doc/bu/files/getconstraintrestitutionortholin.txt b/doc/bu/files/getconstraintrestitutionortholin.txt deleted file mode 100644 index 30f11aa..0000000 --- a/doc/bu/files/getconstraintrestitutionortholin.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getConstraintRestitutionOrthoLin [RCBasic Doc] -#header function getConstraintRestitutionOrthoLin( constraint_id) - - diff --git a/doc/bu/files/getconstraintsoftnessdirang.txt b/doc/bu/files/getconstraintsoftnessdirang.txt deleted file mode 100644 index 53f473c..0000000 --- a/doc/bu/files/getconstraintsoftnessdirang.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getConstraintSoftnessDirAng [RCBasic Doc] -#header function getConstraintSoftnessDirAng( constraint_id) - - diff --git a/doc/bu/files/getconstraintsoftnessdirlin.txt b/doc/bu/files/getconstraintsoftnessdirlin.txt deleted file mode 100644 index 62f30bb..0000000 --- a/doc/bu/files/getconstraintsoftnessdirlin.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getConstraintSoftnessDirLin [RCBasic Doc] -#header function getConstraintSoftnessDirLin( constraint_id) - - diff --git a/doc/bu/files/getconstraintsoftnesslimang.txt b/doc/bu/files/getconstraintsoftnesslimang.txt deleted file mode 100644 index 1640733..0000000 --- a/doc/bu/files/getconstraintsoftnesslimang.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getConstraintSoftnessLimAng [RCBasic Doc] -#header function getConstraintSoftnessLimAng( constraint_id) - - diff --git a/doc/bu/files/getconstraintsoftnesslimlin.txt b/doc/bu/files/getconstraintsoftnesslimlin.txt deleted file mode 100644 index dc2b3b6..0000000 --- a/doc/bu/files/getconstraintsoftnesslimlin.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getConstraintSoftnessLimLin [RCBasic Doc] -#header function getConstraintSoftnessLimLin( constraint_id) - - diff --git a/doc/bu/files/getconstraintsoftnessorthoang.txt b/doc/bu/files/getconstraintsoftnessorthoang.txt deleted file mode 100644 index 504afb8..0000000 --- a/doc/bu/files/getconstraintsoftnessorthoang.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getConstraintSoftnessOrthoAng [RCBasic Doc] -#header function getConstraintSoftnessOrthoAng( constraint_id) - - diff --git a/doc/bu/files/getconstraintsoftnessortholin.txt b/doc/bu/files/getconstraintsoftnessortholin.txt deleted file mode 100644 index eceda39..0000000 --- a/doc/bu/files/getconstraintsoftnessortholin.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getConstraintSoftnessOrthoLin [RCBasic Doc] -#header function getConstraintSoftnessOrthoLin( constraint_id) - - diff --git a/doc/bu/files/getconstraintsolveanglimit.txt b/doc/bu/files/getconstraintsolveanglimit.txt deleted file mode 100644 index 648e66d..0000000 --- a/doc/bu/files/getconstraintsolveanglimit.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getConstraintSolveAngLimit [RCBasic Doc] -#header function getConstraintSolveAngLimit( constraint_id) - - diff --git a/doc/bu/files/getconstraintsolvelimit.txt b/doc/bu/files/getconstraintsolvelimit.txt deleted file mode 100644 index ab40279..0000000 --- a/doc/bu/files/getconstraintsolvelimit.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getConstraintSolveLimit [RCBasic Doc] -#header function getConstraintSolveLimit( constraint_id) - - diff --git a/doc/bu/files/getconstraintsolvelinlimit.txt b/doc/bu/files/getconstraintsolvelinlimit.txt deleted file mode 100644 index 8770ab5..0000000 --- a/doc/bu/files/getconstraintsolvelinlimit.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getConstraintSolveLinLimit [RCBasic Doc] -#header function getConstraintSolveLinLimit( constraint_id) - - diff --git a/doc/bu/files/getconstraintsolveriterations.txt b/doc/bu/files/getconstraintsolveriterations.txt deleted file mode 100644 index 951060c..0000000 --- a/doc/bu/files/getconstraintsolveriterations.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getConstraintSolverIterations [RCBasic Doc] -#header function getConstraintSolverIterations( constraint_id) - - diff --git a/doc/bu/files/getconstraintsolveswinglimit.txt b/doc/bu/files/getconstraintsolveswinglimit.txt deleted file mode 100644 index 54941f1..0000000 --- a/doc/bu/files/getconstraintsolveswinglimit.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getConstraintSolveSwingLimit [RCBasic Doc] -#header function getConstraintSolveSwingLimit( constraint_id) - - diff --git a/doc/bu/files/getconstraintsolvetwistlimit.txt b/doc/bu/files/getconstraintsolvetwistlimit.txt deleted file mode 100644 index e1bda1c..0000000 --- a/doc/bu/files/getconstraintsolvetwistlimit.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getConstraintSolveTwistLimit [RCBasic Doc] -#header function getConstraintSolveTwistLimit( constraint_id) - - diff --git a/doc/bu/files/getconstraintswingspan1.txt b/doc/bu/files/getconstraintswingspan1.txt deleted file mode 100644 index 7d18cd2..0000000 --- a/doc/bu/files/getconstraintswingspan1.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getConstraintSwingSpan1 [RCBasic Doc] -#header function getConstraintSwingSpan1( constraint_id) - - diff --git a/doc/bu/files/getconstraintswingspan2.txt b/doc/bu/files/getconstraintswingspan2.txt deleted file mode 100644 index 92e49e5..0000000 --- a/doc/bu/files/getconstraintswingspan2.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getConstraintSwingSpan2 [RCBasic Doc] -#header function getConstraintSwingSpan2( constraint_id) - - diff --git a/doc/bu/files/getconstrainttwistangle.txt b/doc/bu/files/getconstrainttwistangle.txt deleted file mode 100644 index 6098a36..0000000 --- a/doc/bu/files/getconstrainttwistangle.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getConstraintTwistAngle [RCBasic Doc] -#header function getConstraintTwistAngle( constraint_id) - - diff --git a/doc/bu/files/getconstrainttwistlimitsign.txt b/doc/bu/files/getconstrainttwistlimitsign.txt deleted file mode 100644 index 139ffe8..0000000 --- a/doc/bu/files/getconstrainttwistlimitsign.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getConstraintTwistLimitSign [RCBasic Doc] -#header function getConstraintTwistLimitSign( constraint_id) - - diff --git a/doc/bu/files/getconstrainttwistspan.txt b/doc/bu/files/getconstrainttwistspan.txt deleted file mode 100644 index b9f9a23..0000000 --- a/doc/bu/files/getconstrainttwistspan.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getConstraintTwistSpan [RCBasic Doc] -#header function getConstraintTwistSpan( constraint_id) - - diff --git a/doc/bu/files/getconstraintupperanglimit.txt b/doc/bu/files/getconstraintupperanglimit.txt deleted file mode 100644 index 3d891f4..0000000 --- a/doc/bu/files/getconstraintupperanglimit.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getConstraintUpperAngLimit [RCBasic Doc] -#header function getConstraintUpperAngLimit( constraint_id) - - diff --git a/doc/bu/files/getconstraintupperlinlimit.txt b/doc/bu/files/getconstraintupperlinlimit.txt deleted file mode 100644 index e3df5b9..0000000 --- a/doc/bu/files/getconstraintupperlinlimit.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getConstraintUpperLinLimit [RCBasic Doc] -#header function getConstraintUpperLinLimit( constraint_id) - - diff --git a/doc/bu/files/getconstraintuseframeoffset.txt b/doc/bu/files/getconstraintuseframeoffset.txt deleted file mode 100644 index abae60a..0000000 --- a/doc/bu/files/getconstraintuseframeoffset.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getConstraintUseFrameOffset [RCBasic Doc] -#header function getConstraintUseFrameOffset( constraint_id) - - diff --git a/doc/bu/files/getdesktopdisplaymode.txt b/doc/bu/files/getdesktopdisplaymode.txt deleted file mode 100644 index 65150ed..0000000 --- a/doc/bu/files/getdesktopdisplaymode.txt +++ /dev/null @@ -1,10 +0,0 @@ -#title GetDesktopDisplayMode [RCBasic Doc] -#header Sub GetDesktopDisplayMode(index, ByRef w, ByRef h, ByRef freq) - -Gets the resolution and refresh rate of a display - -#list -#li index - The display index (ie. if you have 3 displays then index could be 0, 1, or 2) -#li w, h - The width and height of the display will be stored in these variables -#li freq - The refresh rate will be stored in this variable -#/list diff --git a/doc/bu/files/getglobalmouse.txt b/doc/bu/files/getglobalmouse.txt deleted file mode 100644 index 7267e36..0000000 --- a/doc/bu/files/getglobalmouse.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title GetGlobalMouse [RCBasic Doc] -#header sub GetGlobalMouse(ByRef x, ByRef y, ByRef mb1, ByRef mb2, ByRef mb3) - -Gets the global mouse position and button state diff --git a/doc/bu/files/getgravity3d.txt b/doc/bu/files/getgravity3d.txt deleted file mode 100644 index ffb2a6a..0000000 --- a/doc/bu/files/getgravity3d.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title GetGravity3D [RCBasic Doc] -#header sub GetGravity3D(ByRef x, ByRef y, ByRef z) - -Gets the world gravity - -#ref SetGravity3D diff --git a/doc/bu/files/getgyro.txt b/doc/bu/files/getgyro.txt deleted file mode 100644 index b622e77..0000000 --- a/doc/bu/files/getgyro.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title GetGyro [RCBasic Doc] -#header sub GetGyro(gyro_num, ByRef x, ByRef y, ByRef z) - -Gets the values of a Gyro sensor diff --git a/doc/bu/files/gethingeangle.txt b/doc/bu/files/gethingeangle.txt deleted file mode 100644 index 341c02c..0000000 --- a/doc/bu/files/gethingeangle.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getHingeAngle [RCBasic Doc] -#header function getHingeAngle( constraint_id) - -Returns the angle of a hinge constraint diff --git a/doc/bu/files/gethingeangleex.txt b/doc/bu/files/gethingeangleex.txt deleted file mode 100644 index c89928a..0000000 --- a/doc/bu/files/gethingeangleex.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getHingeAngleEx [RCBasic Doc] -#header function getHingeAngleEx( constraint_id, t_matrixA, t_matrixB) - -Returns the transforms of the 2 actors in a hinge constraint diff --git a/doc/bu/files/gethingesolvelimit.txt b/doc/bu/files/gethingesolvelimit.txt deleted file mode 100644 index 39368ae..0000000 --- a/doc/bu/files/gethingesolvelimit.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getHingeSolveLimit [RCBasic Doc] -#header function getHingeSolveLimit( constraint_id) - - diff --git a/doc/bu/files/getimagealpha.txt b/doc/bu/files/getimagealpha.txt deleted file mode 100644 index 7b25488..0000000 --- a/doc/bu/files/getimagealpha.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title GetImageAlpha [RCBasic Doc] -#header function GetImageAlpha( img_id ) - -Returns the alpha blend value of an image diff --git a/doc/bu/files/getimagecolormod.txt b/doc/bu/files/getimagecolormod.txt deleted file mode 100644 index c6b6c95..0000000 --- a/doc/bu/files/getimagecolormod.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title GetImageColorMod [RCBasic Doc] -#header function GetImageColorMod(img) - -Returns the color modulation of an image diff --git a/doc/bu/files/getimagesize.txt b/doc/bu/files/getimagesize.txt deleted file mode 100644 index b58abc4..0000000 --- a/doc/bu/files/getimagesize.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title GetImageSize [RCBasic Doc] -#header sub GetImageSize(slot, byref w, byref h) - -Gets the Size of an image diff --git a/doc/bu/files/getjoytrackball.txt b/doc/bu/files/getjoytrackball.txt deleted file mode 100644 index 943a43e..0000000 --- a/doc/bu/files/getjoytrackball.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title GetJoyTrackBall [RCBasic Doc] -#header sub GetJoyTrackBall(joy_num, ball, byref dx, byref dy) - -Gets the axis values of a track ball diff --git a/doc/bu/files/getlightambientcolor.txt b/doc/bu/files/getlightambientcolor.txt deleted file mode 100644 index ea6f936..0000000 --- a/doc/bu/files/getlightambientcolor.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title GetLightAmbientColor [RCBasic Doc] -#header function GetLightAmbientColor( actor ) - -Returns the ambient color of a light diff --git a/doc/bu/files/getlightattenuation.txt b/doc/bu/files/getlightattenuation.txt deleted file mode 100644 index b671d9e..0000000 --- a/doc/bu/files/getlightattenuation.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title GetLightAttenuation [RCBasic Doc] -#header sub GetLightAttenuation( actor, ByRef constant, ByRef linear, ByRef quadratic) - -Gets the strength of the light diff --git a/doc/bu/files/getlightdiffusecolor.txt b/doc/bu/files/getlightdiffusecolor.txt deleted file mode 100644 index 643d85d..0000000 --- a/doc/bu/files/getlightdiffusecolor.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title GetLightDiffuseColor [RCBasic Doc] -#header function GetLightDiffuseColor( actor ) - -Returns the diffuse color of the light diff --git a/doc/bu/files/getlightfalloff.txt b/doc/bu/files/getlightfalloff.txt deleted file mode 100644 index 0a2f291..0000000 --- a/doc/bu/files/getlightfalloff.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title GetLightFalloff [RCBasic Doc] -#header function GetLightFalloff( actor ) - -Returns the strength decrease between the inner and outer cone of a light diff --git a/doc/bu/files/getlightinnercone.txt b/doc/bu/files/getlightinnercone.txt deleted file mode 100644 index cbf606b..0000000 --- a/doc/bu/files/getlightinnercone.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title GetLightInnerCone [RCBasic Doc] -#header function GetLightInnerCone( actor ) - -Returns the inner cone of a spot light diff --git a/doc/bu/files/getlightoutercone.txt b/doc/bu/files/getlightoutercone.txt deleted file mode 100644 index fd6355b..0000000 --- a/doc/bu/files/getlightoutercone.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title GetLightOuterCone [RCBasic Doc] -#header function GetLightOuterCone( actor ) - -Returns the outer cone of a spot light diff --git a/doc/bu/files/getlightradius.txt b/doc/bu/files/getlightradius.txt deleted file mode 100644 index 97c1d9d..0000000 --- a/doc/bu/files/getlightradius.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getLightRadius [RCBasic Doc] -#header function getLightRadius( actor ) - -Returns the radius of the light diff --git a/doc/bu/files/getlightspecularcolor.txt b/doc/bu/files/getlightspecularcolor.txt deleted file mode 100644 index 85fcc57..0000000 --- a/doc/bu/files/getlightspecularcolor.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title GetLightSpecularColor [RCBasic Doc] -#header function GetLightSpecularColor( actor ) - -Returns the specular color of a light diff --git a/doc/bu/files/getlighttype.txt b/doc/bu/files/getlighttype.txt deleted file mode 100644 index 42a4e51..0000000 --- a/doc/bu/files/getlighttype.txt +++ /dev/null @@ -1,15 +0,0 @@ -#title GetLightType [RCBasic Doc] -#header function GetLightType( actor ) - -Returns the type of light - -Returns -1 if it does not have a type (ie. its not a light) - -Possible Light Types -#list ul -#li LIGHT_TYPE_POINT -#li LIGHT_TYPE_POINT -#li LIGHT_TYPE_POINT -#/light - -#ref SetLightType diff --git a/doc/bu/files/getlimitrelaxationfactor.txt b/doc/bu/files/getlimitrelaxationfactor.txt deleted file mode 100644 index 31c6ef9..0000000 --- a/doc/bu/files/getlimitrelaxationfactor.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getLimitRelaxationFactor [RCBasic Doc] -#header function getLimitRelaxationFactor( constraint_id) - - diff --git a/doc/bu/files/getlineintersection.txt b/doc/bu/files/getlineintersection.txt deleted file mode 100644 index 2de427b..0000000 --- a/doc/bu/files/getlineintersection.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title GetLineIntersection [RCBasic Doc] -#header Function GetLineIntersection(p0_x, p0_y, p1_x, p1_y, p2_x, p2_y, p3_x, p3_y, ByRef i_x, ByRef i_y) - -Sets (i_x, i_y) to the intersection of lines p0-p1 and p2-p3 - -Returns true if there is a collision and false if not diff --git a/doc/bu/files/getlineplaneintersection.txt b/doc/bu/files/getlineplaneintersection.txt deleted file mode 100644 index d929740..0000000 --- a/doc/bu/files/getlineplaneintersection.txt +++ /dev/null @@ -1,15 +0,0 @@ -#title GetLinePlaneIntersection [RCBasic Doc] -#header function GetLinePlaneIntersection(ByRef line_point, ByRef line_direction, ByRef plane_point_1, ByRef plane_point_2, ByRef plane_point_3, ByRef intersection) - -This function calculates the intersection between a line and a plane in 3D space and stores the result in intersection - -Parameters: -#list ul -#li line_point - An array with an (x,y,z) point representing the start of a line -#li line_direction - An array with an (x,y,z) point representing another point on the line in the direction its moving -#li plane_point_1 - An array with an (x,y,z) point representing a point on a plane in 3D space -#li plane_point_2 - An array with an (x,y,z) point representing a point on a plane in 3D space -#li plane_point_3 - An array with an (x,y,z) point representing a point on a plane in 3D space -#/list - -Returns true if intersection point is on the plane diff --git a/doc/bu/files/getmaterialambientcolor.txt b/doc/bu/files/getmaterialambientcolor.txt deleted file mode 100644 index 2de78a6..0000000 --- a/doc/bu/files/getmaterialambientcolor.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title GetMaterialAmbientColor [RCBasic Doc] -#header function GetMaterialAmbientColor( material_id) - -Returns the ambient color of a material diff --git a/doc/bu/files/getmaterialantialiasing.txt b/doc/bu/files/getmaterialantialiasing.txt deleted file mode 100644 index b847cd7..0000000 --- a/doc/bu/files/getmaterialantialiasing.txt +++ /dev/null @@ -1,17 +0,0 @@ -#title GetMaterialAntiAliasing [RCBasic Doc] -#header function GetMaterialAntiAliasing( material_id) - -Returns the anti-aliasing mode for the material - -Possible modes returned -#list -#li AA_MODE_OFF=0, -#li AA_MODE_SIMPLE=1, -#li AA_MODE_QUALITY=3, -#li AA_MODE_LINE_SMOOTH=4, -#li AA_MODE_POINT_SMOOTH=8, -#li AA_MODE_FULL_BASIC=15, -#li AA_MODE_ALPHA_TO_COVERAGE=16 -#/list - -#ref SetMaterialAntiAliasing diff --git a/doc/bu/files/getmaterialbackfaceculling.txt b/doc/bu/files/getmaterialbackfaceculling.txt deleted file mode 100644 index ac49cc4..0000000 --- a/doc/bu/files/getmaterialbackfaceculling.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title getMaterialBackfaceCulling [RCBasic Doc] -#header function getMaterialBackfaceCulling( material_id) - -Returns true if backface culling is enabled for a material - -#ref SetMaterialBackfaceCulling diff --git a/doc/bu/files/getmaterialblendfactor.txt b/doc/bu/files/getmaterialblendfactor.txt deleted file mode 100644 index 11e4ee6..0000000 --- a/doc/bu/files/getmaterialblendfactor.txt +++ /dev/null @@ -1,7 +0,0 @@ -#title getMaterialBlendFactor [RCBasic Doc] -#header function getMaterialBlendFactor( material_id) - -Returns a materials blend factor - - - diff --git a/doc/bu/files/getmaterialblendmode.txt b/doc/bu/files/getmaterialblendmode.txt deleted file mode 100644 index 88bf52b..0000000 --- a/doc/bu/files/getmaterialblendmode.txt +++ /dev/null @@ -1,20 +0,0 @@ -#title getMaterialBlendMode [RCBasic Doc] -#header function getMaterialBlendMode( material_id) - -Returns a materials blend mode - -Possible Blend Modes -#list ul -#li BLEND_MODE_NONE -#li BLEND_MODE_ADD -#li BLEND_MODE_SUBTRACT -#li BLEND_MODE_REVSUBTRACT -#li BLEND_MODE_MIN -#li BLEND_MODE_MAX -#li BLEND_MODE_MIN_FACTOR -#li BLEND_MODE_MAX_FACTOR -#li BLEND_MODE_MIN_ALPHA -#li BLEND_MODE_MAX_ALPHA -#/list - -#ref SetMaterialBlendMode diff --git a/doc/bu/files/getmaterialcolormask.txt b/doc/bu/files/getmaterialcolormask.txt deleted file mode 100644 index b0eddc2..0000000 --- a/doc/bu/files/getmaterialcolormask.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title GetMaterialColorMask [RCBasic Doc] -#header function GetMaterialColorMask( material_id) - -Returns the color mask for a material diff --git a/doc/bu/files/getmaterialcolormode.txt b/doc/bu/files/getmaterialcolormode.txt deleted file mode 100644 index 0f51fe2..0000000 --- a/doc/bu/files/getmaterialcolormode.txt +++ /dev/null @@ -1,16 +0,0 @@ -#title getMaterialColorMode [RCBasic Doc] -#header function getMaterialColorMode( material_id) - -Returns the color mode of a material - -Possible modes -#list ul -#li COLOR_MODE_NONE -#li COLOR_MODE_DIFFUSE -#li COLOR_MODE_AMBIENT -#li COLOR_MODE_EMISSIVE -#li COLOR_MODE_SPECULAR -#li COLOR_MODE_DIFFUSE_AND_AMBIENT -#/list - -#ref SetMaterialColorMode diff --git a/doc/bu/files/getmaterialdiffusecolor.txt b/doc/bu/files/getmaterialdiffusecolor.txt deleted file mode 100644 index 7fb645d..0000000 --- a/doc/bu/files/getmaterialdiffusecolor.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title getMaterialDiffuseColor [RCBasic Doc] -#header function getMaterialDiffuseColor( material_id) - -Returns a material's diffuse color - -#ref SetMaterialDiffuseColor diff --git a/doc/bu/files/getmaterialemissivecolor.txt b/doc/bu/files/getmaterialemissivecolor.txt deleted file mode 100644 index 38cda17..0000000 --- a/doc/bu/files/getmaterialemissivecolor.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title getMaterialEmissiveColor [RCBasic Doc] -#header function getMaterialEmissiveColor( material_id) - -Returns a material's emissive color - -#ref SetMaterialEmissiveColor diff --git a/doc/bu/files/getmaterialflag.txt b/doc/bu/files/getmaterialflag.txt deleted file mode 100644 index 9760883..0000000 --- a/doc/bu/files/getmaterialflag.txt +++ /dev/null @@ -1,30 +0,0 @@ -#title getMaterialFlag [RCBasic Doc] -#header function getMaterialFlag( material_id, material_flag) - -Returns the value of the specified material flag - -Possible values for flag: -#list -#li MATERIAL_FLAG_WIREFRAME  -#li MATERIAL_FLAG_POINTCLOUD  -#li MATERIAL_FLAG_GOURAUD_SHADING  -#li MATERIAL_FLAG_LIGHTING  -#li MATERIAL_FLAG_ZBUFFER  -#li MATERIAL_FLAG_ZWRITE_ENABLE  -#li MATERIAL_FLAG_BACK_FACE_CULLING  -#li MATERIAL_FLAG_FRONT_FACE_CULLING  -#li MATERIAL_FLAG_BILINEAR_FILTER  -#li MATERIAL_FLAG_TRILINEAR_FILTER  -#li MATERIAL_FLAG_ANISOTROPIC_FILTER  -#li MATERIAL_FLAG_FOG_ENABLE  -#li MATERIAL_FLAG_NORMALIZE_NORMALS  -#li MATERIAL_FLAG_TEXTURE_WRAP  -#li MATERIAL_FLAG_ANTI_ALIASING  -#li MATERIAL_FLAG_COLOR_MASK  -#li MATERIAL_FLAG_COLOR_MATERIAL  -#li MATERIAL_FLAG_USE_MIP_MAPS  -#li MATERIAL_FLAG_BLEND_OPERATION  -#li MATERIAL_FLAG_POLYGON_OFFSET  -#/list - -#ref GetActorMaterialFlag diff --git a/doc/bu/files/getmaterialfog.txt b/doc/bu/files/getmaterialfog.txt deleted file mode 100644 index 0e7de18..0000000 --- a/doc/bu/files/getmaterialfog.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title getMaterialFog [RCBasic Doc] -#header function getMaterialFog( material_id) - -Returns true if fog is enabled for a material - -#ref SetMaterialFog diff --git a/doc/bu/files/getmaterialfrontfaceculling.txt b/doc/bu/files/getmaterialfrontfaceculling.txt deleted file mode 100644 index 5efcf81..0000000 --- a/doc/bu/files/getmaterialfrontfaceculling.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title getMaterialFrontfaceCulling [RCBasic Doc] -#header function getMaterialFrontfaceCulling( material_id) - -Returns true if front face culling is enabled for a material - -#ref SetMaterialFrontfaceCulling diff --git a/doc/bu/files/getmaterialshininess.txt b/doc/bu/files/getmaterialshininess.txt deleted file mode 100644 index 976155a..0000000 --- a/doc/bu/files/getmaterialshininess.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title getMaterialShininess [RCBasic Doc] -#header function getMaterialShininess( material_id) - -Returns the shininess value for a material - -#ref SetMaterialShininess diff --git a/doc/bu/files/getmaterialspecularcolor.txt b/doc/bu/files/getmaterialspecularcolor.txt deleted file mode 100644 index 4b85db8..0000000 --- a/doc/bu/files/getmaterialspecularcolor.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title getMaterialSpecularColor [RCBasic Doc] -#header function getMaterialSpecularColor( material_id) - -Returns the specular color for a material - -#ref SetMaterialSpecularColor diff --git a/doc/bu/files/getmaterialthickness.txt b/doc/bu/files/getmaterialthickness.txt deleted file mode 100644 index 1725ccd..0000000 --- a/doc/bu/files/getmaterialthickness.txt +++ /dev/null @@ -1,8 +0,0 @@ -#title getMaterialThickness [RCBasic Doc] -#header function getMaterialThickness( material_id) - -Returns a material's thickness value - -Thickness value is mainly for primitives such as lines - -#ref SetMaterialThickness diff --git a/doc/bu/files/getmaterialtype.txt b/doc/bu/files/getmaterialtype.txt deleted file mode 100644 index 53ee577..0000000 --- a/doc/bu/files/getmaterialtype.txt +++ /dev/null @@ -1,35 +0,0 @@ -#title getMaterialType [RCBasic Doc] -#header function getMaterialType( material_id) - -Returns a material's type - -Possible types -#list ul -#li MATERIAL_TYPE_SOLID  -#li MATERIAL_TYPE_SOLID_2_LAYER  -#li MATERIAL_TYPE_LIGHTMAP  -#li MATERIAL_TYPE_LIGHTMAP_ADD  -#li MATERIAL_TYPE_LIGHTMAP_M2  -#li MATERIAL_TYPE_LIGHTMAP_M4  -#li MATERIAL_TYPE_LIGHTMAP_LIGHTING  -#li MATERIAL_TYPE_LIGHTMAP_LIGHTING_M2  -#li MATERIAL_TYPE_LIGHTMAP_LIGHTING_M4  -#li MATERIAL_TYPE_DETAIL_MAP  -#li MATERIAL_TYPE_SPHERE_MAP  -#li MATERIAL_TYPE_REFLECTION_2_LAYER  -#li MATERIAL_TYPE_TRANSPARENT_ADD_COLOR  -#li MATERIAL_TYPE_TRANSPARENT_ALPHA_CHANNEL  -#li MATERIAL_TYPE_TRANSPARENT_ALPHA_CHANNEL_REF  -#li MATERIAL_TYPE_TRANSPARENT_VERTEX_ALPHA  -#li MATERIAL_TYPE_TRANSPARENT_REFLECTION_2_LAYER  -#li MATERIAL_TYPE_NORMAL_MAP_SOLID  -#li MATERIAL_TYPE_NORMAL_MAP_TRANSPARENT_ADD_COLOR  -#li MATERIAL_TYPE_NORMAL_MAP_TRANSPARENT_VERTEX_ALPHA  -#li MATERIAL_TYPE_PARALLAX_MAP_SOLID  -#li MATERIAL_TYPE_PARALLAX_MAP_TRANSPARENT_ADD_COLOR  -#li MATERIAL_TYPE_PARALLAX_MAP_TRANSPARENT_VERTEX_ALPHA  -#li MATERIAL_TYPE_ONETEXTURE_BLEND  -#li MATERIAL_TYPE_FORCE_32BIT  -#/list - -#ref SetMaterialType GetActorMaterialType SetActorMaterialType diff --git a/doc/bu/files/getmatrixrotation.txt b/doc/bu/files/getmatrixrotation.txt deleted file mode 100644 index d8ad74a..0000000 --- a/doc/bu/files/getmatrixrotation.txt +++ /dev/null @@ -1,7 +0,0 @@ -#title GetMatrixRotation [RCBasic Doc] -#header sub GetMatrixRotation( mA, ByRef x, ByRef y, ByRef z) - -Gets the rotation vector of a matrix - -#ref SetMatrixRotation - diff --git a/doc/bu/files/getmatrixscale.txt b/doc/bu/files/getmatrixscale.txt deleted file mode 100644 index f0125cc..0000000 --- a/doc/bu/files/getmatrixscale.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title GetMatrixScale [RCBasic Doc] -#header sub GetMatrixScale( mA, ByRef x, ByRef y, ByRef z) - -Gets the scale vector of a matrix - -#ref SetMatrixScale diff --git a/doc/bu/files/getmatrixsize.txt b/doc/bu/files/getmatrixsize.txt deleted file mode 100644 index 2f4ad2e..0000000 --- a/doc/bu/files/getmatrixsize.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title GetMatrixSize [RCBasic Doc] -#header sub GetMatrixSize(mA, ByRef r, ByRef c) - -Gets the number of rows and columns in a matrix - -#ref DimMatrix diff --git a/doc/bu/files/getmatrixtranslation.txt b/doc/bu/files/getmatrixtranslation.txt deleted file mode 100644 index 66dbc20..0000000 --- a/doc/bu/files/getmatrixtranslation.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title GetMatrixTranslation [RCBasic Doc] -#header sub GetMatrixTranslation( mA, ByRef x, ByRef y, ByRef z) - -Get the position vector of a matrix - -#ref SetMatrixTranslation diff --git a/doc/bu/files/getmouse.txt b/doc/bu/files/getmouse.txt deleted file mode 100644 index c0361f5..0000000 --- a/doc/bu/files/getmouse.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title GetMouse [RCBasic Doc] -#header sub GetMouse(byref x, byref y, byref mb1, byref mb2, byref mb3) - -Gets the mouse position and button state local to the graphics window - -#ref GetGlobalMouse MouseX MouseY MouseButton diff --git a/doc/bu/files/getmousewheel.txt b/doc/bu/files/getmousewheel.txt deleted file mode 100644 index 5845da7..0000000 --- a/doc/bu/files/getmousewheel.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title GetMouseWheel [RCBasic Doc] -#header sub GetMouseWheel(byref x_axis, byref y_axis) - -Gets the axis positions of the mouse wheel - -#ref GetMouse GetGlobalMouse diff --git a/doc/bu/files/getmultitouch.txt b/doc/bu/files/getmultitouch.txt deleted file mode 100644 index 5347b6a..0000000 --- a/doc/bu/files/getmultitouch.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title GetMultiTouch [RCBasic Doc] -#header sub GetMultiTouch(byref status, byref x, byref y, byref fingers, byref dist, byref theta) - -Gets the status, position, number of fingers, distance between the fingers and rotation of a multi-finger gesture diff --git a/doc/bu/files/getmusicposition.txt b/doc/bu/files/getmusicposition.txt deleted file mode 100644 index 38c7b7b..0000000 --- a/doc/bu/files/getmusicposition.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title GetMusicPosition [RCBasic Doc] -#header function GetMusicPosition() - -Returns the position of the music track - -#ref SetMusicPosition diff --git a/doc/bu/files/getmusicvolume.txt b/doc/bu/files/getmusicvolume.txt deleted file mode 100644 index ec82d6e..0000000 --- a/doc/bu/files/getmusicvolume.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title GetMusicVolume [RCBasic Doc] -#header function GetMusicVolume() - -Returns the music track's volume diff --git a/doc/bu/files/getparticlebox.txt b/doc/bu/files/getparticlebox.txt deleted file mode 100644 index 35214ce..0000000 --- a/doc/bu/files/getparticlebox.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getParticleBox [RCBasic Doc] -#header sub getParticleBox( actor, ByRef min_x, ByRef min_y, ByRef min_z, ByRef max_x, ByRef max_y, ByRef max_z) - - diff --git a/doc/bu/files/getparticlecenter.txt b/doc/bu/files/getparticlecenter.txt deleted file mode 100644 index 760052f..0000000 --- a/doc/bu/files/getparticlecenter.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getParticleCenter [RCBasic Doc] -#header sub getParticleCenter( actor, ByRef x, ByRef y, ByRef z) - - diff --git a/doc/bu/files/getparticledirection.txt b/doc/bu/files/getparticledirection.txt deleted file mode 100644 index 0d6bc11..0000000 --- a/doc/bu/files/getparticledirection.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getParticleDirection [RCBasic Doc] -#header sub getParticleDirection( actor, ByRef x, ByRef y, ByRef z) - - diff --git a/doc/bu/files/getparticlelength.txt b/doc/bu/files/getparticlelength.txt deleted file mode 100644 index da50454..0000000 --- a/doc/bu/files/getparticlelength.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getParticleLength [RCBasic Doc] -#header function getParticleLength( actor) - - diff --git a/doc/bu/files/getparticlemaxangle.txt b/doc/bu/files/getparticlemaxangle.txt deleted file mode 100644 index 6ef2483..0000000 --- a/doc/bu/files/getparticlemaxangle.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getParticleMaxAngle [RCBasic Doc] -#header function getParticleMaxAngle( actor) - - diff --git a/doc/bu/files/getparticlemaxlife.txt b/doc/bu/files/getparticlemaxlife.txt deleted file mode 100644 index 9d8e33a..0000000 --- a/doc/bu/files/getparticlemaxlife.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getParticleMaxLife [RCBasic Doc] -#header function getParticleMaxLife( actor) - - diff --git a/doc/bu/files/getparticlemaxparticlespersecond.txt b/doc/bu/files/getparticlemaxparticlespersecond.txt deleted file mode 100644 index e28dc7b..0000000 --- a/doc/bu/files/getparticlemaxparticlespersecond.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getParticleMaxParticlesPerSecond [RCBasic Doc] -#header function getParticleMaxParticlesPerSecond( actor) - - diff --git a/doc/bu/files/getparticlemaxstartcolor.txt b/doc/bu/files/getparticlemaxstartcolor.txt deleted file mode 100644 index 7a98047..0000000 --- a/doc/bu/files/getparticlemaxstartcolor.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getParticleMaxStartColor [RCBasic Doc] -#header function getParticleMaxStartColor( actor) - - diff --git a/doc/bu/files/getparticlemaxstartsize.txt b/doc/bu/files/getparticlemaxstartsize.txt deleted file mode 100644 index 7ec819f..0000000 --- a/doc/bu/files/getparticlemaxstartsize.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getParticleMaxStartSize [RCBasic Doc] -#header sub getParticleMaxStartSize( actor, ByRef w, ByRef h) - - diff --git a/doc/bu/files/getparticleminlife.txt b/doc/bu/files/getparticleminlife.txt deleted file mode 100644 index 2e218bc..0000000 --- a/doc/bu/files/getparticleminlife.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getParticleMinLife [RCBasic Doc] -#header function getParticleMinLife( actor) - - diff --git a/doc/bu/files/getparticleminparticlespersecond.txt b/doc/bu/files/getparticleminparticlespersecond.txt deleted file mode 100644 index da946d5..0000000 --- a/doc/bu/files/getparticleminparticlespersecond.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getParticleMinParticlesPerSecond [RCBasic Doc] -#header function getParticleMinParticlesPerSecond( actor) - - diff --git a/doc/bu/files/getparticleminstartcolor.txt b/doc/bu/files/getparticleminstartcolor.txt deleted file mode 100644 index d6d58f9..0000000 --- a/doc/bu/files/getparticleminstartcolor.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getParticleMinStartColor [RCBasic Doc] -#header function getParticleMinStartColor( actor) - - diff --git a/doc/bu/files/getparticleminstartsize.txt b/doc/bu/files/getparticleminstartsize.txt deleted file mode 100644 index e04b978..0000000 --- a/doc/bu/files/getparticleminstartsize.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getParticleMinStartSize [RCBasic Doc] -#header sub getParticleMinStartSize( actor, ByRef w, ByRef h) - - diff --git a/doc/bu/files/getparticlenormal.txt b/doc/bu/files/getparticlenormal.txt deleted file mode 100644 index 67a106b..0000000 --- a/doc/bu/files/getparticlenormal.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getParticleNormal [RCBasic Doc] -#header sub getParticleNormal( actor, ByRef x, ByRef y, ByRef z) - - diff --git a/doc/bu/files/getparticlenormaldirectionmod.txt b/doc/bu/files/getparticlenormaldirectionmod.txt deleted file mode 100644 index 994e71b..0000000 --- a/doc/bu/files/getparticlenormaldirectionmod.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getParticleNormalDirectionMod [RCBasic Doc] -#header function getParticleNormalDirectionMod( actor) - - diff --git a/doc/bu/files/getparticleradius.txt b/doc/bu/files/getparticleradius.txt deleted file mode 100644 index fa21818..0000000 --- a/doc/bu/files/getparticleradius.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getParticleRadius [RCBasic Doc] -#header function getParticleRadius( actor) - - diff --git a/doc/bu/files/getparticleringthickness.txt b/doc/bu/files/getparticleringthickness.txt deleted file mode 100644 index 7741e4e..0000000 --- a/doc/bu/files/getparticleringthickness.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getParticleRingThickness [RCBasic Doc] -#header function getParticleRingThickness( actor) - - diff --git a/doc/bu/files/getpixel.txt b/doc/bu/files/getpixel.txt deleted file mode 100644 index 2d7eb2c..0000000 --- a/doc/bu/files/getpixel.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title GetPixel [RCBasic Doc] -#header function GetPixel(x,y) - - diff --git a/doc/bu/files/getpowerinfo.txt b/doc/bu/files/getpowerinfo.txt deleted file mode 100644 index 54e7ccc..0000000 --- a/doc/bu/files/getpowerinfo.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title GetPowerInfo [RCBasic Doc] -#header Sub GetPowerInfo(ByRef status, ByRef secs, ByRef pct) - - diff --git a/doc/bu/files/getsoundvolume.txt b/doc/bu/files/getsoundvolume.txt deleted file mode 100644 index b847ae1..0000000 --- a/doc/bu/files/getsoundvolume.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title GetSoundVolume [RCBasic Doc] -#header function GetSoundVolume(slot) - - diff --git a/doc/bu/files/getterraincenter.txt b/doc/bu/files/getterraincenter.txt deleted file mode 100644 index 40d1607..0000000 --- a/doc/bu/files/getterraincenter.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title GetTerrainCenter [RCBasic Doc] -#header sub GetTerrainCenter( actor, ByRef x, ByRef y, ByRef z ) - - diff --git a/doc/bu/files/getterrainheight.txt b/doc/bu/files/getterrainheight.txt deleted file mode 100644 index 682b7a0..0000000 --- a/doc/bu/files/getterrainheight.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title GetTerrainHeight [RCBasic Doc] -#header function GetTerrainHeight( actor, patchX, patchZ ) - - diff --git a/doc/bu/files/getterrainpatchaabb.txt b/doc/bu/files/getterrainpatchaabb.txt deleted file mode 100644 index fd00cb6..0000000 --- a/doc/bu/files/getterrainpatchaabb.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title GetTerrainPatchAABB [RCBasic Doc] -#header sub GetTerrainPatchAABB( actor, patchX, patchZ, ByRef minX, ByRef minY, ByRef minZ, ByRef maxX, ByRef maxY, ByRef maxZ ) - - diff --git a/doc/bu/files/getterrainpatchlod.txt b/doc/bu/files/getterrainpatchlod.txt deleted file mode 100644 index a48d218..0000000 --- a/doc/bu/files/getterrainpatchlod.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title GetTerrainPatchLOD [RCBasic Doc] -#header function GetTerrainPatchLOD( actor, patchX, patchZ ) - - diff --git a/doc/bu/files/gettextheight.txt b/doc/bu/files/gettextheight.txt deleted file mode 100644 index d3e5d73..0000000 --- a/doc/bu/files/gettextheight.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title GetTextHeight [RCBasic Doc] -#header function GetTextHeight(txt$) - - diff --git a/doc/bu/files/gettextsize.txt b/doc/bu/files/gettextsize.txt deleted file mode 100644 index 06e0a8e..0000000 --- a/doc/bu/files/gettextsize.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title GetTextSize [RCBasic Doc] -#header sub GetTextSize(txt$, byref w, byref h) - - diff --git a/doc/bu/files/gettextwidth.txt b/doc/bu/files/gettextwidth.txt deleted file mode 100644 index 3091a72..0000000 --- a/doc/bu/files/gettextwidth.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title GetTextWidth [RCBasic Doc] -#header function GetTextWidth(txt$) - - diff --git a/doc/bu/files/gettouch.txt b/doc/bu/files/gettouch.txt deleted file mode 100644 index 5f83a70..0000000 --- a/doc/bu/files/gettouch.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title GetTouch [RCBasic Doc] -#header sub GetTouch(byref status, byref x, byref y, byref dx, byref dy) - - diff --git a/doc/bu/files/gettouchfinger.txt b/doc/bu/files/gettouchfinger.txt deleted file mode 100644 index e7f9d7a..0000000 --- a/doc/bu/files/gettouchfinger.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title GetTouchFinger [RCBasic Doc] -#header sub GetTouchFinger(finger, byref x, byref y, byref pressure) - - diff --git a/doc/bu/files/getvideodrawrect.txt b/doc/bu/files/getvideodrawrect.txt deleted file mode 100644 index 5d99c12..0000000 --- a/doc/bu/files/getvideodrawrect.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title GetVideoDrawRect [RCBasic Doc] -#header sub GetVideoDrawRect(byref x, byref y, byref w, byref h) - - diff --git a/doc/bu/files/getvideoposition.txt b/doc/bu/files/getvideoposition.txt deleted file mode 100644 index 50284e3..0000000 --- a/doc/bu/files/getvideoposition.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title GetVideoPosition [RCBasic Doc] -#header function GetVideoPosition() - - diff --git a/doc/bu/files/getvideosize.txt b/doc/bu/files/getvideosize.txt deleted file mode 100644 index 1b737b3..0000000 --- a/doc/bu/files/getvideosize.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title GetVideoSize [RCBasic Doc] -#header sub GetVideoSize(byref w, byref h) - - diff --git a/doc/bu/files/getvideostats.txt b/doc/bu/files/getvideostats.txt deleted file mode 100644 index 4087b96..0000000 --- a/doc/bu/files/getvideostats.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title GetVideoStats [RCBasic Doc] -#header sub GetVideoStats(vFile$, byref vLen, byref vfps, byref frame_w, byref frame_h) - - diff --git a/doc/bu/files/getvideovolume.txt b/doc/bu/files/getvideovolume.txt deleted file mode 100644 index 3ae5dce..0000000 --- a/doc/bu/files/getvideovolume.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title GetVideoVolume [RCBasic Doc] -#header function GetVideoVolume( ) - - diff --git a/doc/bu/files/getwatercolor.txt b/doc/bu/files/getwatercolor.txt deleted file mode 100644 index d228770..0000000 --- a/doc/bu/files/getwatercolor.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getWaterColor [RCBasic Doc] -#header function getWaterColor( actor) - - diff --git a/doc/bu/files/getwatercolorblendfactor.txt b/doc/bu/files/getwatercolorblendfactor.txt deleted file mode 100644 index 95cf8bd..0000000 --- a/doc/bu/files/getwatercolorblendfactor.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getWaterColorBlendFactor [RCBasic Doc] -#header function getWaterColorBlendFactor( actor) - - diff --git a/doc/bu/files/getwaterwaveheight.txt b/doc/bu/files/getwaterwaveheight.txt deleted file mode 100644 index cfa0909..0000000 --- a/doc/bu/files/getwaterwaveheight.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getWaterWaveHeight [RCBasic Doc] -#header function getWaterWaveHeight( actor) - - diff --git a/doc/bu/files/getwaterwinddirection.txt b/doc/bu/files/getwaterwinddirection.txt deleted file mode 100644 index e2f6112..0000000 --- a/doc/bu/files/getwaterwinddirection.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getWaterWindDirection [RCBasic Doc] -#header sub getWaterWindDirection( actor, ByRef x, ByRef z) - - diff --git a/doc/bu/files/getwaterwindforce.txt b/doc/bu/files/getwaterwindforce.txt deleted file mode 100644 index 4216525..0000000 --- a/doc/bu/files/getwaterwindforce.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getWaterWindForce [RCBasic Doc] -#header function getWaterWindForce( actor) - - diff --git a/doc/bu/files/getwindowmaxsize.txt b/doc/bu/files/getwindowmaxsize.txt deleted file mode 100644 index 1481133..0000000 --- a/doc/bu/files/getwindowmaxsize.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title GetWindowMaxSize [RCBasic Doc] -#header sub GetWindowMaxSize( byref w, byref h) - - diff --git a/doc/bu/files/getwindowminsize.txt b/doc/bu/files/getwindowminsize.txt deleted file mode 100644 index 80dfeec..0000000 --- a/doc/bu/files/getwindowminsize.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title GetWindowMinSize [RCBasic Doc] -#header sub GetWindowMinSize( byref w, byref h) - - diff --git a/doc/bu/files/getwindowmode.txt b/doc/bu/files/getwindowmode.txt deleted file mode 100644 index 5c9596c..0000000 --- a/doc/bu/files/getwindowmode.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getWindowMode [RCBasic Doc] -#header function getWindowMode( ) - - diff --git a/doc/bu/files/getwindowposition.txt b/doc/bu/files/getwindowposition.txt deleted file mode 100644 index 2c6c473..0000000 --- a/doc/bu/files/getwindowposition.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title GetWindowPosition [RCBasic Doc] -#header sub GetWindowPosition( byref x, byref y ) - - diff --git a/doc/bu/files/getwindowsize.txt b/doc/bu/files/getwindowsize.txt deleted file mode 100644 index 9a85901..0000000 --- a/doc/bu/files/getwindowsize.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title GetWindowSize [RCBasic Doc] -#header sub GetWindowSize( byref w, byref h ) - - diff --git a/doc/bu/files/globalmousex.txt b/doc/bu/files/globalmousex.txt deleted file mode 100644 index 6b384f8..0000000 --- a/doc/bu/files/globalmousex.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title GlobalMouseX [RCBasic Doc] -#header function GlobalMouseX() - - diff --git a/doc/bu/files/globalmousey.txt b/doc/bu/files/globalmousey.txt deleted file mode 100644 index 64ea0b3..0000000 --- a/doc/bu/files/globalmousey.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title GlobalMouseY [RCBasic Doc] -#header function GlobalMouseY() - - diff --git a/doc/bu/files/grabinput.txt b/doc/bu/files/grabinput.txt deleted file mode 100644 index a149e9f..0000000 --- a/doc/bu/files/grabinput.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title GrabInput [RCBasic Doc] -#header sub GrabInput(flag) - - diff --git a/doc/bu/files/gyroname.txt b/doc/bu/files/gyroname.txt deleted file mode 100644 index 0308818..0000000 --- a/doc/bu/files/gyroname.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title GyroName$ [RCBasic Doc] -#header function GyroName$(gyro_num) - - diff --git a/doc/bu/files/hasclipboardtext.txt b/doc/bu/files/hasclipboardtext.txt deleted file mode 100644 index bd68430..0000000 --- a/doc/bu/files/hasclipboardtext.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title HasClipboardText [RCBasic Doc] -#header function HasClipboardText() - - diff --git a/doc/bu/files/hex.txt b/doc/bu/files/hex.txt deleted file mode 100644 index 3829236..0000000 --- a/doc/bu/files/hex.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title Hex$ [RCBasic Doc] -#header function Hex$(n) - - diff --git a/doc/bu/files/hexval.txt b/doc/bu/files/hexval.txt deleted file mode 100644 index 3479219..0000000 --- a/doc/bu/files/hexval.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title HexVal [RCBasic Doc] -#header function HexVal(n$) - - diff --git a/doc/bu/files/hidemouse.txt b/doc/bu/files/hidemouse.txt deleted file mode 100644 index 1f56680..0000000 --- a/doc/bu/files/hidemouse.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title HideMouse [RCBasic Doc] -#header sub HideMouse() - - diff --git a/doc/bu/files/hidewindow.txt b/doc/bu/files/hidewindow.txt deleted file mode 100644 index 9f663c9..0000000 --- a/doc/bu/files/hidewindow.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title HideWindow [RCBasic Doc] -#header sub HideWindow( ) - - diff --git a/doc/bu/files/imageexists.txt b/doc/bu/files/imageexists.txt deleted file mode 100644 index c493f60..0000000 --- a/doc/bu/files/imageexists.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title ImageExists [RCBasic Doc] -#header function ImageExists(slot) - - diff --git a/doc/bu/files/incrementmatrixcolumns.txt b/doc/bu/files/incrementmatrixcolumns.txt deleted file mode 100644 index 33dfea4..0000000 --- a/doc/bu/files/incrementmatrixcolumns.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title IncrementMatrixColumns [RCBasic Doc] -#header sub IncrementMatrixColumns(mA, mB, c, num_cols, value) - - diff --git a/doc/bu/files/incrementmatrixrows.txt b/doc/bu/files/incrementmatrixrows.txt deleted file mode 100644 index fa257a1..0000000 --- a/doc/bu/files/incrementmatrixrows.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title IncrementMatrixRows [RCBasic Doc] -#header sub IncrementMatrixRows(mA, mB, r, num_rows, value) - - diff --git a/doc/bu/files/inkey.txt b/doc/bu/files/inkey.txt deleted file mode 100644 index ef48103..0000000 --- a/doc/bu/files/inkey.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title InKey [RCBasic Doc] -#header function InKey() - - diff --git a/doc/bu/files/input.txt b/doc/bu/files/input.txt deleted file mode 100644 index b63ca4b..0000000 --- a/doc/bu/files/input.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title Input$ [RCBasic Doc] -#header function Input$(prompt$) - - diff --git a/doc/bu/files/insert.txt b/doc/bu/files/insert.txt deleted file mode 100644 index a38fa5b..0000000 --- a/doc/bu/files/insert.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title Insert$ [RCBasic Doc] -#header function Insert$(src$, tgt$, pos) - - diff --git a/doc/bu/files/insertmatrixcolumns.txt b/doc/bu/files/insertmatrixcolumns.txt deleted file mode 100644 index d4a3abc..0000000 --- a/doc/bu/files/insertmatrixcolumns.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title InsertMatrixColumns [RCBasic Doc] -#header function InsertMatrixColumns(mA, c, num_cols) - - diff --git a/doc/bu/files/insertmatrixrows.txt b/doc/bu/files/insertmatrixrows.txt deleted file mode 100644 index 1727f83..0000000 --- a/doc/bu/files/insertmatrixrows.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title InsertMatrixRows [RCBasic Doc] -#header function InsertMatrixRows(mA, r, num_rows) - - diff --git a/doc/bu/files/instr.txt b/doc/bu/files/instr.txt deleted file mode 100644 index 4d85ebc..0000000 --- a/doc/bu/files/instr.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title InStr [RCBasic Doc] -#header function InStr(src$, substr$) - - diff --git a/doc/bu/files/int.txt b/doc/bu/files/int.txt deleted file mode 100644 index 8e2e13c..0000000 --- a/doc/bu/files/int.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title Int [RCBasic Doc] -#header function Int(n) - - diff --git a/doc/bu/files/integrateactorvelocities.txt b/doc/bu/files/integrateactorvelocities.txt deleted file mode 100644 index 995e6f0..0000000 --- a/doc/bu/files/integrateactorvelocities.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title integrateActorVelocities [RCBasic Doc] -#header sub integrateActorVelocities( actor, v_step) - - diff --git a/doc/bu/files/interpolate.txt b/doc/bu/files/interpolate.txt deleted file mode 100644 index 41193c0..0000000 --- a/doc/bu/files/interpolate.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title Interpolate [RCBasic Doc] -#header Function Interpolate(min_a, max_a, mid_a, min_b, max_b) - - diff --git a/doc/bu/files/invertmatrix.txt b/doc/bu/files/invertmatrix.txt deleted file mode 100644 index c6b72a6..0000000 --- a/doc/bu/files/invertmatrix.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title InvertMatrix [RCBasic Doc] -#header function InvertMatrix(mA, mB) - - diff --git a/doc/bu/files/isequalmatrix.txt b/doc/bu/files/isequalmatrix.txt deleted file mode 100644 index 5909dcb..0000000 --- a/doc/bu/files/isequalmatrix.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title IsEqualMatrix [RCBasic Doc] -#header function IsEqualMatrix(mA, mB, tolerance) - - diff --git a/doc/bu/files/joinmatrixcolumns.txt b/doc/bu/files/joinmatrixcolumns.txt deleted file mode 100644 index 7596865..0000000 --- a/doc/bu/files/joinmatrixcolumns.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title JoinMatrixColumns [RCBasic Doc] -#header sub JoinMatrixColumns(mA, mB, mC) - - diff --git a/doc/bu/files/joinmatrixrows.txt b/doc/bu/files/joinmatrixrows.txt deleted file mode 100644 index 79f7f4b..0000000 --- a/doc/bu/files/joinmatrixrows.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title JoinMatrixRows [RCBasic Doc] -#header sub JoinMatrixRows(mA, mB, mC) - - diff --git a/doc/bu/files/joyaxis.txt b/doc/bu/files/joyaxis.txt deleted file mode 100644 index 133963e..0000000 --- a/doc/bu/files/joyaxis.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title JoyAxis [RCBasic Doc] -#header function JoyAxis(joy_num, joy_axis) - - diff --git a/doc/bu/files/joybutton.txt b/doc/bu/files/joybutton.txt deleted file mode 100644 index e291c8c..0000000 --- a/doc/bu/files/joybutton.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title JoyButton [RCBasic Doc] -#header function JoyButton(joy_num, joy_button) - - diff --git a/doc/bu/files/joyhat.txt b/doc/bu/files/joyhat.txt deleted file mode 100644 index bd677fb..0000000 --- a/doc/bu/files/joyhat.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title JoyHat [RCBasic Doc] -#header function JoyHat(joy_num, joy_hat) - - diff --git a/doc/bu/files/joyname.txt b/doc/bu/files/joyname.txt deleted file mode 100644 index d234523..0000000 --- a/doc/bu/files/joyname.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title JoyName$ [RCBasic Doc] -#header function JoyName$(joy_num) - - diff --git a/doc/bu/files/joyrumbleplay.txt b/doc/bu/files/joyrumbleplay.txt deleted file mode 100644 index 49723c4..0000000 --- a/doc/bu/files/joyrumbleplay.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title JoyRumblePlay [RCBasic Doc] -#header sub JoyRumblePlay(joy_num, strength, duration) - - diff --git a/doc/bu/files/joyrumblestop.txt b/doc/bu/files/joyrumblestop.txt deleted file mode 100644 index 5ce95f4..0000000 --- a/doc/bu/files/joyrumblestop.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title JoyRumbleStop [RCBasic Doc] -#header sub JoyRumbleStop(joy_num) - - diff --git a/doc/bu/files/joystickisconnected.txt b/doc/bu/files/joystickisconnected.txt deleted file mode 100644 index d691385..0000000 --- a/doc/bu/files/joystickisconnected.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title JoystickIsConnected [RCBasic Doc] -#header function JoystickIsConnected(joy_num) - - diff --git a/doc/bu/files/joystickishaptic.txt b/doc/bu/files/joystickishaptic.txt deleted file mode 100644 index 89381fc..0000000 --- a/doc/bu/files/joystickishaptic.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title JoystickIsHaptic [RCBasic Doc] -#header function JoystickIsHaptic(joy_num) - - diff --git a/doc/bu/files/key.txt b/doc/bu/files/key.txt deleted file mode 100644 index 76feca5..0000000 --- a/doc/bu/files/key.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title Key [RCBasic Doc] -#header function Key(key_code) - - diff --git a/doc/bu/files/lcase.txt b/doc/bu/files/lcase.txt deleted file mode 100644 index 7fe61dd..0000000 --- a/doc/bu/files/lcase.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title Lcase$ [RCBasic Doc] -#header function Lcase$(src$) - - diff --git a/doc/bu/files/left.txt b/doc/bu/files/left.txt deleted file mode 100644 index 3ea0198..0000000 --- a/doc/bu/files/left.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title Left$ [RCBasic Doc] -#header function Left$(src$, n) - - diff --git a/doc/bu/files/len.txt b/doc/bu/files/len.txt deleted file mode 100644 index 3933724..0000000 --- a/doc/bu/files/len.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title Len [RCBasic Doc] -#header function Len(src$) - - diff --git a/doc/bu/files/length.txt b/doc/bu/files/length.txt deleted file mode 100644 index 583b3d8..0000000 --- a/doc/bu/files/length.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title Length [RCBasic Doc] -#header function Length(src$) - - diff --git a/doc/bu/files/lightiscastingshadow.txt b/doc/bu/files/lightiscastingshadow.txt deleted file mode 100644 index 6e1bc52..0000000 --- a/doc/bu/files/lightiscastingshadow.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title lightIsCastingShadow [RCBasic Doc] -#header function lightIsCastingShadow( actor ) - - diff --git a/doc/bu/files/line.txt b/doc/bu/files/line.txt deleted file mode 100644 index 3218a53..0000000 --- a/doc/bu/files/line.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title Line [RCBasic Doc] -#header sub Line(x1, y1, x2, y2) - - diff --git a/doc/bu/files/loadfont.txt b/doc/bu/files/loadfont.txt deleted file mode 100644 index e8ecfc1..0000000 --- a/doc/bu/files/loadfont.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title LoadFont [RCBasic Doc] -#header function LoadFont(fnt_file$, font_size) - - diff --git a/doc/bu/files/loadimage.txt b/doc/bu/files/loadimage.txt deleted file mode 100644 index 0ea157f..0000000 --- a/doc/bu/files/loadimage.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title LoadImage [RCBasic Doc] -#header function LoadImage( img$ ) - - diff --git a/doc/bu/files/loadimageex.txt b/doc/bu/files/loadimageex.txt deleted file mode 100644 index 411a4fa..0000000 --- a/doc/bu/files/loadimageex.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title LoadImageEx [RCBasic Doc] -#header function LoadImageEx(img$, colkey) - - diff --git a/doc/bu/files/loadmesh.txt b/doc/bu/files/loadmesh.txt deleted file mode 100644 index b81238d..0000000 --- a/doc/bu/files/loadmesh.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title LoadMesh [RCBasic Doc] -#header function LoadMesh( mesh_file$ ) - - diff --git a/doc/bu/files/loadmeshfromarchive.txt b/doc/bu/files/loadmeshfromarchive.txt deleted file mode 100644 index 930c0b4..0000000 --- a/doc/bu/files/loadmeshfromarchive.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title LoadMeshFromArchive [RCBasic Doc] -#header function LoadMeshFromArchive( archive$, mesh_file$ ) - - diff --git a/doc/bu/files/loadmusic.txt b/doc/bu/files/loadmusic.txt deleted file mode 100644 index 97685fa..0000000 --- a/doc/bu/files/loadmusic.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title LoadMusic [RCBasic Doc] -#header sub LoadMusic(music_file$) - - diff --git a/doc/bu/files/loadsound.txt b/doc/bu/files/loadsound.txt deleted file mode 100644 index a493bf2..0000000 --- a/doc/bu/files/loadsound.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title LoadSound [RCBasic Doc] -#header function LoadSound(snd_file$) - - diff --git a/doc/bu/files/loadvideo.txt b/doc/bu/files/loadvideo.txt deleted file mode 100644 index 76c4666..0000000 --- a/doc/bu/files/loadvideo.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title LoadVideo [RCBasic Doc] -#header sub LoadVideo(vid$) - - diff --git a/doc/bu/files/log.txt b/doc/bu/files/log.txt deleted file mode 100644 index 333ad0c..0000000 --- a/doc/bu/files/log.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title Log [RCBasic Doc] -#header function Log(n) - - diff --git a/doc/bu/files/loopactoranimation.txt b/doc/bu/files/loopactoranimation.txt deleted file mode 100644 index b59dd23..0000000 --- a/doc/bu/files/loopactoranimation.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title loopActorAnimation [RCBasic Doc] -#header sub loopActorAnimation( actor, flag ) - - diff --git a/doc/bu/files/ltrim.txt b/doc/bu/files/ltrim.txt deleted file mode 100644 index 7875047..0000000 --- a/doc/bu/files/ltrim.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title Ltrim$ [RCBasic Doc] -#header function Ltrim$(src$) - - diff --git a/doc/bu/files/makedir.txt b/doc/bu/files/makedir.txt deleted file mode 100644 index db76b7c..0000000 --- a/doc/bu/files/makedir.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title MakeDir [RCBasic Doc] -#header function MakeDir(p$) - - diff --git a/doc/bu/files/materialisaplhablend.txt b/doc/bu/files/materialisaplhablend.txt deleted file mode 100644 index e81c4d1..0000000 --- a/doc/bu/files/materialisaplhablend.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title materialIsAplhaBlend [RCBasic Doc] -#header function materialIsAplhaBlend( material_id) - - diff --git a/doc/bu/files/materialisgouraudshaded.txt b/doc/bu/files/materialisgouraudshaded.txt deleted file mode 100644 index 4f086f8..0000000 --- a/doc/bu/files/materialisgouraudshaded.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title materialIsGouraudShaded [RCBasic Doc] -#header function materialIsGouraudShaded( material_id) - - diff --git a/doc/bu/files/materialislit.txt b/doc/bu/files/materialislit.txt deleted file mode 100644 index 7097a8f..0000000 --- a/doc/bu/files/materialislit.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title materialIsLit [RCBasic Doc] -#header function materialIsLit( material_id) - - diff --git a/doc/bu/files/materialisnormalized.txt b/doc/bu/files/materialisnormalized.txt deleted file mode 100644 index 7c57568..0000000 --- a/doc/bu/files/materialisnormalized.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title materialIsNormalized [RCBasic Doc] -#header function materialIsNormalized( material_id) - - diff --git a/doc/bu/files/materialispointcloud.txt b/doc/bu/files/materialispointcloud.txt deleted file mode 100644 index 9598967..0000000 --- a/doc/bu/files/materialispointcloud.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title materialIsPointCloud [RCBasic Doc] -#header function materialIsPointCloud( material_id) - - diff --git a/doc/bu/files/materialistransparent.txt b/doc/bu/files/materialistransparent.txt deleted file mode 100644 index 1a83a0a..0000000 --- a/doc/bu/files/materialistransparent.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title materialIsTransparent [RCBasic Doc] -#header function materialIsTransparent( material_id) - - diff --git a/doc/bu/files/materialiswireframe.txt b/doc/bu/files/materialiswireframe.txt deleted file mode 100644 index 4dce2fa..0000000 --- a/doc/bu/files/materialiswireframe.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title materialIsWireframe [RCBasic Doc] -#header function materialIsWireframe( material_id) - - diff --git a/doc/bu/files/matrixfrombuffer.txt b/doc/bu/files/matrixfrombuffer.txt deleted file mode 100644 index 6086349..0000000 --- a/doc/bu/files/matrixfrombuffer.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title MatrixFromBuffer [RCBasic Doc] -#header sub MatrixFromBuffer(mA, r, c, ByRef buffer) - - diff --git a/doc/bu/files/matrixvalue.txt b/doc/bu/files/matrixvalue.txt deleted file mode 100644 index 013e5ba..0000000 --- a/doc/bu/files/matrixvalue.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title MatrixValue [RCBasic Doc] -#header function MatrixValue(mA, r, c) - - diff --git a/doc/bu/files/max.txt b/doc/bu/files/max.txt deleted file mode 100644 index 1a2dede..0000000 --- a/doc/bu/files/max.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title Max [RCBasic Doc] -#header function Max(a, b) - - diff --git a/doc/bu/files/maximizewindow.txt b/doc/bu/files/maximizewindow.txt deleted file mode 100644 index 437ccab..0000000 --- a/doc/bu/files/maximizewindow.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title MaximizeWindow [RCBasic Doc] -#header sub MaximizeWindow() - - diff --git a/doc/bu/files/messagebox.txt b/doc/bu/files/messagebox.txt deleted file mode 100644 index 1756441..0000000 --- a/doc/bu/files/messagebox.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title MessageBox [RCBasic Doc] -#header function MessageBox(title$, msg$) - - diff --git a/doc/bu/files/mid.txt b/doc/bu/files/mid.txt deleted file mode 100644 index 8b14040..0000000 --- a/doc/bu/files/mid.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title Mid$ [RCBasic Doc] -#header function Mid$(src$, start, n) - - diff --git a/doc/bu/files/min.txt b/doc/bu/files/min.txt deleted file mode 100644 index 6828ac4..0000000 --- a/doc/bu/files/min.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title Min [RCBasic Doc] -#header function Min(a, b) - - diff --git a/doc/bu/files/minimizewindow.txt b/doc/bu/files/minimizewindow.txt deleted file mode 100644 index 9644318..0000000 --- a/doc/bu/files/minimizewindow.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title MinimizeWindow [RCBasic Doc] -#header sub MinimizeWindow() - - diff --git a/doc/bu/files/mousebutton.txt b/doc/bu/files/mousebutton.txt deleted file mode 100644 index fb4f088..0000000 --- a/doc/bu/files/mousebutton.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title MouseButton [RCBasic Doc] -#header function MouseButton(mb) - - diff --git a/doc/bu/files/mouseisvisible.txt b/doc/bu/files/mouseisvisible.txt deleted file mode 100644 index 1360aa6..0000000 --- a/doc/bu/files/mouseisvisible.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title MouseIsVisible [RCBasic Doc] -#header function MouseIsVisible() - - diff --git a/doc/bu/files/mousewheelx.txt b/doc/bu/files/mousewheelx.txt deleted file mode 100644 index 09c476d..0000000 --- a/doc/bu/files/mousewheelx.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title MouseWheelX [RCBasic Doc] -#header function MouseWheelX() - - diff --git a/doc/bu/files/mousewheely.txt b/doc/bu/files/mousewheely.txt deleted file mode 100644 index ee42d6d..0000000 --- a/doc/bu/files/mousewheely.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title MouseWheelY [RCBasic Doc] -#header function MouseWheelY() - - diff --git a/doc/bu/files/mousex.txt b/doc/bu/files/mousex.txt deleted file mode 100644 index a8ac3ec..0000000 --- a/doc/bu/files/mousex.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title MouseX [RCBasic Doc] -#header function MouseX() - - diff --git a/doc/bu/files/mousey.txt b/doc/bu/files/mousey.txt deleted file mode 100644 index 867d7b4..0000000 --- a/doc/bu/files/mousey.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title MouseY [RCBasic Doc] -#header function MouseY() - - diff --git a/doc/bu/files/movefile.txt b/doc/bu/files/movefile.txt deleted file mode 100644 index b1000a6..0000000 --- a/doc/bu/files/movefile.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title MoveFile [RCBasic Doc] -#header function MoveFile(src$, dst$) - - diff --git a/doc/bu/files/multiplymatrix.txt b/doc/bu/files/multiplymatrix.txt deleted file mode 100644 index 02f194d..0000000 --- a/doc/bu/files/multiplymatrix.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title MultiplyMatrix [RCBasic Doc] -#header function MultiplyMatrix(mA, mB, mC) - - diff --git a/doc/bu/files/musicexists.txt b/doc/bu/files/musicexists.txt deleted file mode 100644 index a0c8e39..0000000 --- a/doc/bu/files/musicexists.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title MusicExists [RCBasic Doc] -#header function MusicExists() - - diff --git a/doc/bu/files/musicisplaying.txt b/doc/bu/files/musicisplaying.txt deleted file mode 100644 index 7a13f25..0000000 --- a/doc/bu/files/musicisplaying.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title MusicIsPlaying [RCBasic Doc] -#header function MusicIsPlaying() - - diff --git a/doc/bu/files/numaccels.txt b/doc/bu/files/numaccels.txt deleted file mode 100644 index a88ead3..0000000 --- a/doc/bu/files/numaccels.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title NumAccels [RCBasic Doc] -#header function NumAccels() - - diff --git a/doc/bu/files/numberarraycopy.txt b/doc/bu/files/numberarraycopy.txt deleted file mode 100644 index 2dae7f5..0000000 --- a/doc/bu/files/numberarraycopy.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title NumberArrayCopy [RCBasic Doc] -#header sub NumberArrayCopy(ByRef src, ByRef dst) - - diff --git a/doc/bu/files/numberarraydim.txt b/doc/bu/files/numberarraydim.txt deleted file mode 100644 index 5669b6d..0000000 --- a/doc/bu/files/numberarraydim.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title NumberArrayDim [RCBasic Doc] -#header function NumberArrayDim(Byref id) - - diff --git a/doc/bu/files/numberarrayfill.txt b/doc/bu/files/numberarrayfill.txt deleted file mode 100644 index b4ec9f8..0000000 --- a/doc/bu/files/numberarrayfill.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title NumberArrayFill [RCBasic Doc] -#header sub NumberArrayFill(ByRef src, fdata) - - diff --git a/doc/bu/files/numberarraysize.txt b/doc/bu/files/numberarraysize.txt deleted file mode 100644 index ca13632..0000000 --- a/doc/bu/files/numberarraysize.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title NumberArraySize [RCBasic Doc] -#header function NumberArraySize(Byref id, array_dim) - - diff --git a/doc/bu/files/numcommands.txt b/doc/bu/files/numcommands.txt deleted file mode 100644 index 19c71ad..0000000 --- a/doc/bu/files/numcommands.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title NumCommands [RCBasic Doc] -#header function NumCommands() - - diff --git a/doc/bu/files/numcpus.txt b/doc/bu/files/numcpus.txt deleted file mode 100644 index fe43f47..0000000 --- a/doc/bu/files/numcpus.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title NumCPUs [RCBasic Doc] -#header function NumCPUs() - - diff --git a/doc/bu/files/numfingers.txt b/doc/bu/files/numfingers.txt deleted file mode 100644 index 870a488..0000000 --- a/doc/bu/files/numfingers.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title NumFingers [RCBasic Doc] -#header function NumFingers() - - diff --git a/doc/bu/files/numgyros.txt b/doc/bu/files/numgyros.txt deleted file mode 100644 index e4c04f2..0000000 --- a/doc/bu/files/numgyros.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title NumGyros [RCBasic Doc] -#header function NumGyros() - - diff --git a/doc/bu/files/numjoyaxes.txt b/doc/bu/files/numjoyaxes.txt deleted file mode 100644 index 015ee49..0000000 --- a/doc/bu/files/numjoyaxes.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title NumJoyAxes [RCBasic Doc] -#header function NumJoyAxes(joy_num) - - diff --git a/doc/bu/files/numjoybuttons.txt b/doc/bu/files/numjoybuttons.txt deleted file mode 100644 index 1ad0dd1..0000000 --- a/doc/bu/files/numjoybuttons.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title NumJoyButtons [RCBasic Doc] -#header function NumJoyButtons(joy_num) - - diff --git a/doc/bu/files/numjoyhats.txt b/doc/bu/files/numjoyhats.txt deleted file mode 100644 index 38efbbf..0000000 --- a/doc/bu/files/numjoyhats.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title NumJoyHats [RCBasic Doc] -#header function NumJoyHats(joy_num) - - diff --git a/doc/bu/files/numjoysticks.txt b/doc/bu/files/numjoysticks.txt deleted file mode 100644 index d72534b..0000000 --- a/doc/bu/files/numjoysticks.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title NumJoysticks [RCBasic Doc] -#header function NumJoysticks() - - diff --git a/doc/bu/files/numjoytrackballs.txt b/doc/bu/files/numjoytrackballs.txt deleted file mode 100644 index 929b48d..0000000 --- a/doc/bu/files/numjoytrackballs.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title NumJoyTrackBalls [RCBasic Doc] -#header function NumJoyTrackBalls(joy_num) - - diff --git a/doc/bu/files/numsoundchannels.txt b/doc/bu/files/numsoundchannels.txt deleted file mode 100644 index 7e5221f..0000000 --- a/doc/bu/files/numsoundchannels.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title NumSoundChannels [RCBasic Doc] -#header function NumSoundChannels() - - diff --git a/doc/bu/files/opencanvas.txt b/doc/bu/files/opencanvas.txt deleted file mode 100644 index e96a2dd..0000000 --- a/doc/bu/files/opencanvas.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title OpenCanvas [RCBasic Doc] -#header function OpenCanvas( w, h, viewport_x, viewport_y, viewport_w, viewport_h, mode) - - diff --git a/doc/bu/files/openfile.txt b/doc/bu/files/openfile.txt deleted file mode 100644 index d961bb5..0000000 --- a/doc/bu/files/openfile.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title OpenFile [RCBasic Doc] -#header function OpenFile(fileName$, mode) - - diff --git a/doc/bu/files/openurl.txt b/doc/bu/files/openurl.txt deleted file mode 100644 index 7fd2cf7..0000000 --- a/doc/bu/files/openurl.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title OpenURL [RCBasic Doc] -#header function OpenURL(url$) - - diff --git a/doc/bu/files/openwindow.txt b/doc/bu/files/openwindow.txt deleted file mode 100644 index 80d6b7b..0000000 --- a/doc/bu/files/openwindow.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title OpenWindow [RCBasic Doc] -#header Function OpenWindow( title$, w, h, fullscreen, vsync ) - - diff --git a/doc/bu/files/openwindowex.txt b/doc/bu/files/openwindowex.txt deleted file mode 100644 index 441ebf8..0000000 --- a/doc/bu/files/openwindowex.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title OpenWindowEx [RCBasic Doc] -#header function OpenWindowEx(title$, x, y, w, h, mode, aa, stencil_buffer, vsync) - - diff --git a/doc/bu/files/orbit.txt b/doc/bu/files/orbit.txt deleted file mode 100644 index 26590c5..0000000 --- a/doc/bu/files/orbit.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title OrBit [RCBasic Doc] -#header function OrBit(a, b) - - diff --git a/doc/bu/files/os.txt b/doc/bu/files/os.txt deleted file mode 100644 index 4e9286f..0000000 --- a/doc/bu/files/os.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title OS$ [RCBasic Doc] -#header function OS$() - - diff --git a/doc/bu/files/particleisusingeverymeshvertex.txt b/doc/bu/files/particleisusingeverymeshvertex.txt deleted file mode 100644 index 5c97b62..0000000 --- a/doc/bu/files/particleisusingeverymeshvertex.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title particleIsUsingEveryMeshVertex [RCBasic Doc] -#header function particleIsUsingEveryMeshVertex( actor) - - diff --git a/doc/bu/files/particleisusingnormaldirection.txt b/doc/bu/files/particleisusingnormaldirection.txt deleted file mode 100644 index 1cae291..0000000 --- a/doc/bu/files/particleisusingnormaldirection.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title particleIsUsingNormalDirection [RCBasic Doc] -#header function particleIsUsingNormalDirection( actor) - - diff --git a/doc/bu/files/particleisusingoutlineonly.txt b/doc/bu/files/particleisusingoutlineonly.txt deleted file mode 100644 index b114c1b..0000000 --- a/doc/bu/files/particleisusingoutlineonly.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title particleIsUsingOutlineOnly [RCBasic Doc] -#header function particleIsUsingOutlineOnly( actor) - - diff --git a/doc/bu/files/pausemusic.txt b/doc/bu/files/pausemusic.txt deleted file mode 100644 index 754eee6..0000000 --- a/doc/bu/files/pausemusic.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title PauseMusic [RCBasic Doc] -#header sub PauseMusic() - - diff --git a/doc/bu/files/pausesound.txt b/doc/bu/files/pausesound.txt deleted file mode 100644 index 7bfb363..0000000 --- a/doc/bu/files/pausesound.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title PauseSound [RCBasic Doc] -#header sub PauseSound(channel) - - diff --git a/doc/bu/files/pausevideo.txt b/doc/bu/files/pausevideo.txt deleted file mode 100644 index e4f9c22..0000000 --- a/doc/bu/files/pausevideo.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title PauseVideo [RCBasic Doc] -#header sub PauseVideo() - - diff --git a/doc/bu/files/playmusic.txt b/doc/bu/files/playmusic.txt deleted file mode 100644 index 73204db..0000000 --- a/doc/bu/files/playmusic.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title PlayMusic [RCBasic Doc] -#header sub PlayMusic(mLoops) - - diff --git a/doc/bu/files/playsound.txt b/doc/bu/files/playsound.txt deleted file mode 100644 index 4c4c62d..0000000 --- a/doc/bu/files/playsound.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title PlaySound [RCBasic Doc] -#header sub PlaySound(slot, channel, loops) - - diff --git a/doc/bu/files/playsoundtimed.txt b/doc/bu/files/playsoundtimed.txt deleted file mode 100644 index 5e0cf1c..0000000 --- a/doc/bu/files/playsoundtimed.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title PlaySoundTimed [RCBasic Doc] -#header sub PlaySoundTimed(slot, channel, loops, ms) - - diff --git a/doc/bu/files/playvideo.txt b/doc/bu/files/playvideo.txt deleted file mode 100644 index 47ad2f9..0000000 --- a/doc/bu/files/playvideo.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title PlayVideo [RCBasic Doc] -#header sub PlayVideo(vLoops) - - diff --git a/doc/bu/files/pointinquad.txt b/doc/bu/files/pointinquad.txt deleted file mode 100644 index 4f3ca9b..0000000 --- a/doc/bu/files/pointinquad.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title PointInQuad [RCBasic Doc] -#header function PointInQuad(x, y, x1, y1, x2, y2, x3, y3, x4, y4) - - diff --git a/doc/bu/files/pointintri.txt b/doc/bu/files/pointintri.txt deleted file mode 100644 index 49a29e1..0000000 --- a/doc/bu/files/pointintri.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title PointInTri [RCBasic Doc] -#header function PointInTri(x, y, x1, y1, x2, y2, x3, y3) - - diff --git a/doc/bu/files/poly.txt b/doc/bu/files/poly.txt deleted file mode 100644 index 1294e69..0000000 --- a/doc/bu/files/poly.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title Poly [RCBasic Doc] -#header sub Poly(n, byref x, byref y) - - diff --git a/doc/bu/files/pop_n.txt b/doc/bu/files/pop_n.txt deleted file mode 100644 index a785a85..0000000 --- a/doc/bu/files/pop_n.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title Pop_N [RCBasic Doc] -#header function Pop_N( num_stack ) - - diff --git a/doc/bu/files/pop_s.txt b/doc/bu/files/pop_s.txt deleted file mode 100644 index e66028e..0000000 --- a/doc/bu/files/pop_s.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title Pop_S$ [RCBasic Doc] -#header function Pop_S$( str_stack ) - - diff --git a/doc/bu/files/prefpath.txt b/doc/bu/files/prefpath.txt deleted file mode 100644 index 0dfc3ff..0000000 --- a/doc/bu/files/prefpath.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title PrefPath$ [RCBasic Doc] -#header function PrefPath$(org_name$, app_name$) - - diff --git a/doc/bu/files/pset.txt b/doc/bu/files/pset.txt deleted file mode 100644 index 411e190..0000000 --- a/doc/bu/files/pset.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title Pset [RCBasic Doc] -#header sub Pset(x,y) - - diff --git a/doc/bu/files/push_n.txt b/doc/bu/files/push_n.txt deleted file mode 100644 index 1a9f83b..0000000 --- a/doc/bu/files/push_n.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title Push_N [RCBasic Doc] -#header sub Push_N( num_stack, n ) - - diff --git a/doc/bu/files/push_s.txt b/doc/bu/files/push_s.txt deleted file mode 100644 index a6b04e2..0000000 --- a/doc/bu/files/push_s.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title Push_S [RCBasic Doc] -#header sub Push_S( str_stack, s$ ) - - diff --git a/doc/bu/files/queryaudiospec.txt b/doc/bu/files/queryaudiospec.txt deleted file mode 100644 index 969989f..0000000 --- a/doc/bu/files/queryaudiospec.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title QueryAudioSpec [RCBasic Doc] -#header function QueryAudioSpec(ByRef freq, ByRef format, ByRef channels) - - diff --git a/doc/bu/files/radians.txt b/doc/bu/files/radians.txt deleted file mode 100644 index 0f0f324..0000000 --- a/doc/bu/files/radians.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title Radians [RCBasic Doc] -#header function Radians(d) - - diff --git a/doc/bu/files/raisewindow.txt b/doc/bu/files/raisewindow.txt deleted file mode 100644 index 6c13aa5..0000000 --- a/doc/bu/files/raisewindow.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title RaiseWindow [RCBasic Doc] -#header sub RaiseWindow( ) - - diff --git a/doc/bu/files/rand.txt b/doc/bu/files/rand.txt deleted file mode 100644 index 380a601..0000000 --- a/doc/bu/files/rand.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title Rand [RCBasic Doc] -#header function Rand(n) - - diff --git a/doc/bu/files/randomize.txt b/doc/bu/files/randomize.txt deleted file mode 100644 index c3c2ef4..0000000 --- a/doc/bu/files/randomize.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title Randomize [RCBasic Doc] -#header function Randomize(n) - - diff --git a/doc/bu/files/randomizematrix.txt b/doc/bu/files/randomizematrix.txt deleted file mode 100644 index cdc4a09..0000000 --- a/doc/bu/files/randomizematrix.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title RandomizeMatrix [RCBasic Doc] -#header sub RandomizeMatrix(mA, vmin, vmax) - - diff --git a/doc/bu/files/readbyte.txt b/doc/bu/files/readbyte.txt deleted file mode 100644 index b5b06e9..0000000 --- a/doc/bu/files/readbyte.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title ReadByte [RCBasic Doc] -#header function ReadByte(stream) - - diff --git a/doc/bu/files/readbytebuffer.txt b/doc/bu/files/readbytebuffer.txt deleted file mode 100644 index 10f06fe..0000000 --- a/doc/bu/files/readbytebuffer.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title ReadByteBuffer [RCBasic Doc] -#header function ReadByteBuffer(stream, ByRef buf, buf_size) - - diff --git a/doc/bu/files/readinput_settext.txt b/doc/bu/files/readinput_settext.txt deleted file mode 100644 index 4cd14c9..0000000 --- a/doc/bu/files/readinput_settext.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title ReadInput_SetText [RCBasic Doc] -#header sub ReadInput_SetText(txt$) - - diff --git a/doc/bu/files/readinput_start.txt b/doc/bu/files/readinput_start.txt deleted file mode 100644 index a3fd1af..0000000 --- a/doc/bu/files/readinput_start.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title ReadInput_Start [RCBasic Doc] -#header sub ReadInput_Start() - - diff --git a/doc/bu/files/readinput_stop.txt b/doc/bu/files/readinput_stop.txt deleted file mode 100644 index 48afa3c..0000000 --- a/doc/bu/files/readinput_stop.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title ReadInput_Stop [RCBasic Doc] -#header sub ReadInput_Stop() - - diff --git a/doc/bu/files/readinput_text.txt b/doc/bu/files/readinput_text.txt deleted file mode 100644 index 16cc690..0000000 --- a/doc/bu/files/readinput_text.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title ReadInput_Text$ [RCBasic Doc] -#header function ReadInput_Text$() - - diff --git a/doc/bu/files/readinput_togglebackspace.txt b/doc/bu/files/readinput_togglebackspace.txt deleted file mode 100644 index 6a4b6aa..0000000 --- a/doc/bu/files/readinput_togglebackspace.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title ReadInput_ToggleBackspace [RCBasic Doc] -#header sub ReadInput_ToggleBackspace(flag) - - diff --git a/doc/bu/files/readline.txt b/doc/bu/files/readline.txt deleted file mode 100644 index 905c7e4..0000000 --- a/doc/bu/files/readline.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title ReadLine$ [RCBasic Doc] -#header function ReadLine$(stream) - - diff --git a/doc/bu/files/rect.txt b/doc/bu/files/rect.txt deleted file mode 100644 index ca7d960..0000000 --- a/doc/bu/files/rect.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title Rect [RCBasic Doc] -#header sub Rect(x, y, w, h) - - diff --git a/doc/bu/files/rectfill.txt b/doc/bu/files/rectfill.txt deleted file mode 100644 index 1b5a196..0000000 --- a/doc/bu/files/rectfill.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title RectFill [RCBasic Doc] -#header sub RectFill(x, y, w, h) - - diff --git a/doc/bu/files/removeactorshadow.txt b/doc/bu/files/removeactorshadow.txt deleted file mode 100644 index 0f699b1..0000000 --- a/doc/bu/files/removeactorshadow.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title RemoveActorShadow [RCBasic Doc] -#header sub RemoveActorShadow( actor ) - - diff --git a/doc/bu/files/removedir.txt b/doc/bu/files/removedir.txt deleted file mode 100644 index c03614a..0000000 --- a/doc/bu/files/removedir.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title RemoveDir [RCBasic Doc] -#header function RemoveDir(p$) - - diff --git a/doc/bu/files/removefile.txt b/doc/bu/files/removefile.txt deleted file mode 100644 index 87b2c15..0000000 --- a/doc/bu/files/removefile.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title RemoveFile [RCBasic Doc] -#header function RemoveFile(fileName$) - - diff --git a/doc/bu/files/removescenesky.txt b/doc/bu/files/removescenesky.txt deleted file mode 100644 index b665641..0000000 --- a/doc/bu/files/removescenesky.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title RemoveSceneSky [RCBasic Doc] -#header sub RemoveSceneSky( ) - - diff --git a/doc/bu/files/renamefile.txt b/doc/bu/files/renamefile.txt deleted file mode 100644 index abbdf67..0000000 --- a/doc/bu/files/renamefile.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title RenameFile [RCBasic Doc] -#header function RenameFile(src$, dst$) - - diff --git a/doc/bu/files/replace.txt b/doc/bu/files/replace.txt deleted file mode 100644 index 33bc7c2..0000000 --- a/doc/bu/files/replace.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title Replace$ [RCBasic Doc] -#header function Replace$(src$, tgt$, rpc$) - - diff --git a/doc/bu/files/replacesubstr.txt b/doc/bu/files/replacesubstr.txt deleted file mode 100644 index 92ef6a0..0000000 --- a/doc/bu/files/replacesubstr.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title ReplaceSubstr$ [RCBasic Doc] -#header function ReplaceSubstr$(src$, rpc$, pos) - - diff --git a/doc/bu/files/restorewindow.txt b/doc/bu/files/restorewindow.txt deleted file mode 100644 index 26ef88e..0000000 --- a/doc/bu/files/restorewindow.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title RestoreWindow [RCBasic Doc] -#header sub RestoreWindow( ) - - diff --git a/doc/bu/files/resumemusic.txt b/doc/bu/files/resumemusic.txt deleted file mode 100644 index 371cdd7..0000000 --- a/doc/bu/files/resumemusic.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title ResumeMusic [RCBasic Doc] -#header sub ResumeMusic() - - diff --git a/doc/bu/files/resumesound.txt b/doc/bu/files/resumesound.txt deleted file mode 100644 index be12b60..0000000 --- a/doc/bu/files/resumesound.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title ResumeSound [RCBasic Doc] -#header sub ResumeSound(channel) - - diff --git a/doc/bu/files/resumevideo.txt b/doc/bu/files/resumevideo.txt deleted file mode 100644 index 2c6b1a0..0000000 --- a/doc/bu/files/resumevideo.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title ResumeVideo [RCBasic Doc] -#header sub ResumeVideo() - - diff --git a/doc/bu/files/reverse.txt b/doc/bu/files/reverse.txt deleted file mode 100644 index f087869..0000000 --- a/doc/bu/files/reverse.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title Reverse$ [RCBasic Doc] -#header function Reverse$(src$) - - diff --git a/doc/bu/files/rewindmusic.txt b/doc/bu/files/rewindmusic.txt deleted file mode 100644 index 230a3bc..0000000 --- a/doc/bu/files/rewindmusic.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title RewindMusic [RCBasic Doc] -#header sub RewindMusic() - - diff --git a/doc/bu/files/rgb.txt b/doc/bu/files/rgb.txt deleted file mode 100644 index 327923b..0000000 --- a/doc/bu/files/rgb.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title RGB [RCBasic Doc] -#header function RGB(r,g,b) - - diff --git a/doc/bu/files/rgba.txt b/doc/bu/files/rgba.txt deleted file mode 100644 index afebfcb..0000000 --- a/doc/bu/files/rgba.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title RGBA [RCBasic Doc] -#header function RGBA(r,g,b,a) - - diff --git a/doc/bu/files/right.txt b/doc/bu/files/right.txt deleted file mode 100644 index 2f571dd..0000000 --- a/doc/bu/files/right.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title Right$ [RCBasic Doc] -#header function Right$(src$, n) - - diff --git a/doc/bu/files/rotateactor.txt b/doc/bu/files/rotateactor.txt deleted file mode 100644 index 16db805..0000000 --- a/doc/bu/files/rotateactor.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title RotateActor [RCBasic Doc] -#header sub RotateActor( actor, x, y, z ) - - diff --git a/doc/bu/files/rotatecamera.txt b/doc/bu/files/rotatecamera.txt deleted file mode 100644 index 8dd2d7f..0000000 --- a/doc/bu/files/rotatecamera.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title RotateCamera [RCBasic Doc] -#header sub RotateCamera( x, y, z) - - diff --git a/doc/bu/files/round.txt b/doc/bu/files/round.txt deleted file mode 100644 index c6dade7..0000000 --- a/doc/bu/files/round.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title Round [RCBasic Doc] -#header function Round(n) - - diff --git a/doc/bu/files/rtrim.txt b/doc/bu/files/rtrim.txt deleted file mode 100644 index ff3ab2c..0000000 --- a/doc/bu/files/rtrim.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title Rtrim$ [RCBasic Doc] -#header function Rtrim$(src$) - - diff --git a/doc/bu/files/runtime.txt b/doc/bu/files/runtime.txt deleted file mode 100644 index fdfdbb5..0000000 --- a/doc/bu/files/runtime.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title Runtime$ [RCBasic Doc] -#header function Runtime$() - - diff --git a/doc/bu/files/runtime_utility_message.txt b/doc/bu/files/runtime_utility_message.txt deleted file mode 100644 index 711b420..0000000 --- a/doc/bu/files/runtime_utility_message.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title Runtime_Utility_Message$ [RCBasic Doc] -#header function Runtime_Utility_Message$(arg$) - - diff --git a/doc/bu/files/scalarmatrix.txt b/doc/bu/files/scalarmatrix.txt deleted file mode 100644 index ae1d0b9..0000000 --- a/doc/bu/files/scalarmatrix.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title ScalarMatrix [RCBasic Doc] -#header sub ScalarMatrix(mA, mB, s_value) - - diff --git a/doc/bu/files/scalarmatrixcolumns.txt b/doc/bu/files/scalarmatrixcolumns.txt deleted file mode 100644 index d627d3b..0000000 --- a/doc/bu/files/scalarmatrixcolumns.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title ScalarMatrixColumns [RCBasic Doc] -#header function ScalarMatrixColumns(mA, mB, c, num_cols, s_value) - - diff --git a/doc/bu/files/scalarmatrixrows.txt b/doc/bu/files/scalarmatrixrows.txt deleted file mode 100644 index 4cede18..0000000 --- a/doc/bu/files/scalarmatrixrows.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title ScalarMatrixRows [RCBasic Doc] -#header function ScalarMatrixRows(mA, mB, r, num_rows, s_value) - - diff --git a/doc/bu/files/scaleactor.txt b/doc/bu/files/scaleactor.txt deleted file mode 100644 index ff1e0c5..0000000 --- a/doc/bu/files/scaleactor.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title ScaleActor [RCBasic Doc] -#header sub ScaleActor( actor, x, y, z ) - - diff --git a/doc/bu/files/scaleterraintexture.txt b/doc/bu/files/scaleterraintexture.txt deleted file mode 100644 index 74a4097..0000000 --- a/doc/bu/files/scaleterraintexture.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title ScaleTerrainTexture [RCBasic Doc] -#header sub ScaleTerrainTexture( actor, scale, scale2 ) - - diff --git a/doc/bu/files/seek.txt b/doc/bu/files/seek.txt deleted file mode 100644 index eeff200..0000000 --- a/doc/bu/files/seek.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title Seek [RCBasic Doc] -#header function Seek(stream, pos) - - diff --git a/doc/bu/files/setactorangularfactor.txt b/doc/bu/files/setactorangularfactor.txt deleted file mode 100644 index f24d283..0000000 --- a/doc/bu/files/setactorangularfactor.txt +++ /dev/null @@ -1,9 +0,0 @@ -#title SetActorAngularFactor [RCBasic Doc] -#header sub SetActorAngularFactor( actor, x, y, z) - -Sets an actor's angular factor. - -The angular factor determines how the actor responds to angular velocity or torque. - -#ref GetActorAngularFactor SetActorAngularFactor SetActorLinearFactor - diff --git a/doc/bu/files/setactorangularvelocitylocal.txt b/doc/bu/files/setactorangularvelocitylocal.txt deleted file mode 100644 index d1f7541..0000000 --- a/doc/bu/files/setactorangularvelocitylocal.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setActorAngularVelocityLocal [RCBasic Doc] -#header sub setActorAngularVelocityLocal( actor, x, y, z) - - diff --git a/doc/bu/files/setactorangularvelocityworld.txt b/doc/bu/files/setactorangularvelocityworld.txt deleted file mode 100644 index 1fa8210..0000000 --- a/doc/bu/files/setactorangularvelocityworld.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setActorAngularVelocityWorld [RCBasic Doc] -#header sub setActorAngularVelocityWorld( actor, x, y, z) - - diff --git a/doc/bu/files/setactoranimation.txt b/doc/bu/files/setactoranimation.txt deleted file mode 100644 index bdc4b0b..0000000 --- a/doc/bu/files/setactoranimation.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SetActorAnimation [RCBasic Doc] -#header sub SetActorAnimation( actor, start_frame, end_frame) - - diff --git a/doc/bu/files/setactoranimationspeed.txt b/doc/bu/files/setactoranimationspeed.txt deleted file mode 100644 index acc056a..0000000 --- a/doc/bu/files/setactoranimationspeed.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SetActorAnimationSpeed [RCBasic Doc] -#header sub SetActorAnimationSpeed( actor, speed ) - - diff --git a/doc/bu/files/setactorautoculling.txt b/doc/bu/files/setactorautoculling.txt deleted file mode 100644 index a6ded76..0000000 --- a/doc/bu/files/setactorautoculling.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SetActorAutoCulling [RCBasic Doc] -#header sub SetActorAutoCulling( actor, cull_type ) - - diff --git a/doc/bu/files/setactorcollisionshape.txt b/doc/bu/files/setactorcollisionshape.txt deleted file mode 100644 index 2863723..0000000 --- a/doc/bu/files/setactorcollisionshape.txt +++ /dev/null @@ -1,18 +0,0 @@ -#title SetActorCollisionShape [RCBasic Doc] -#header sub SetActorCollisionShape( actor, shape_type, mass) - -Sets the actor's collision shape - -Shape Types: -#list ul -#li SHAPE_TYPE_NONE -#li SHAPE_TYPE_BOX -#li SHAPE_TYPE_SPHERE -#li SHAPE_TYPE_CYLINDER -#li SHAPE_TYPE_CAPSULE -#li SHAPE_TYPE_CONE -#li SHAPE_TYPE_CONVEXHULL -#li SHAPE_TYPE_TRIMESH -#/list - -#ref GetActorCollisionShape diff --git a/doc/bu/files/setactordamping.txt b/doc/bu/files/setactordamping.txt deleted file mode 100644 index 579f522..0000000 --- a/doc/bu/files/setactordamping.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setActorDamping [RCBasic Doc] -#header sub setActorDamping( actor, lin_damping, ang_damping) - - diff --git a/doc/bu/files/setactorframe.txt b/doc/bu/files/setactorframe.txt deleted file mode 100644 index 089229e..0000000 --- a/doc/bu/files/setactorframe.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SetActorFrame [RCBasic Doc] -#header sub SetActorFrame( actor, frame ) - - diff --git a/doc/bu/files/setactorgravity.txt b/doc/bu/files/setactorgravity.txt deleted file mode 100644 index 98493c6..0000000 --- a/doc/bu/files/setactorgravity.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SetActorGravity [RCBasic Doc] -#header sub SetActorGravity( actor, x, y, z ) - - diff --git a/doc/bu/files/setactorinverseinertiadiaglocal.txt b/doc/bu/files/setactorinverseinertiadiaglocal.txt deleted file mode 100644 index cc428ef..0000000 --- a/doc/bu/files/setactorinverseinertiadiaglocal.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title SetActorInverseInertiaDiagLocal [RCBasic Doc] -#header sub SetActorInverseInertiaDiagLocal( actor, x, y, z) - -Sets the inverse of the inertia tensor's diagonal components in an actor's local space. This is used to compute how the actor reacts to rotational forces (torques) applied to it. - -#ref GetActorInverseInertiaDiagLocal diff --git a/doc/bu/files/setactorlinearfactor.txt b/doc/bu/files/setactorlinearfactor.txt deleted file mode 100644 index 836a22f..0000000 --- a/doc/bu/files/setactorlinearfactor.txt +++ /dev/null @@ -1,9 +0,0 @@ -#title SetActorLinearFactor [RCBasic Doc] -#header sub SetActorLinearFactor( actor, x, y, z) - -Sets an actor's linear factor. - -The linear factor determines how the actor responds to linear velocity or force. - -#ref GetActorLinearFactor SetActorAngularFactor GetActorAngularFactor - diff --git a/doc/bu/files/setactorlinearvelocitylocal.txt b/doc/bu/files/setactorlinearvelocitylocal.txt deleted file mode 100644 index 7dcb77b..0000000 --- a/doc/bu/files/setactorlinearvelocitylocal.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setActorLinearVelocityLocal [RCBasic Doc] -#header sub setActorLinearVelocityLocal( actor, x, y, z) - - diff --git a/doc/bu/files/setactorlinearvelocityworld.txt b/doc/bu/files/setactorlinearvelocityworld.txt deleted file mode 100644 index a583ff3..0000000 --- a/doc/bu/files/setactorlinearvelocityworld.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setActorLinearVelocityWorld [RCBasic Doc] -#header sub setActorLinearVelocityWorld( actor, x, y, z) - - diff --git a/doc/bu/files/setactormassproperties.txt b/doc/bu/files/setactormassproperties.txt deleted file mode 100644 index f84275d..0000000 --- a/doc/bu/files/setactormassproperties.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setActorMassProperties [RCBasic Doc] -#header sub setActorMassProperties( actor, mass, inertia_x, inertia_y, inertia_z) - - diff --git a/doc/bu/files/setactormaterial.txt b/doc/bu/files/setactormaterial.txt deleted file mode 100644 index d6cf9ce..0000000 --- a/doc/bu/files/setactormaterial.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setActorMaterial [RCBasic Doc] -#header sub setActorMaterial( actor, material_num, material_id) - - diff --git a/doc/bu/files/setactormaterialflag.txt b/doc/bu/files/setactormaterialflag.txt deleted file mode 100644 index 18fbb8c..0000000 --- a/doc/bu/files/setactormaterialflag.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setActorMaterialFlag [RCBasic Doc] -#header sub setActorMaterialFlag( actor, flag, flag_value) - - diff --git a/doc/bu/files/setactormaterialtype.txt b/doc/bu/files/setactormaterialtype.txt deleted file mode 100644 index 5289e2e..0000000 --- a/doc/bu/files/setactormaterialtype.txt +++ /dev/null @@ -1,37 +0,0 @@ -#title setActorMaterialType [RCBasic Doc] -#header sub setActorMaterialType( actor, material_type) - -Sets the material type of an actor material - -Note: This will set material 0. If your actor has more than one material you need to get a reference to the actor material with GetActorMaterial() to set them. - -Possible material types -#list ul -#li MATERIAL_TYPE_SOLID  -#li MATERIAL_TYPE_SOLID_2_LAYER  -#li MATERIAL_TYPE_LIGHTMAP  -#li MATERIAL_TYPE_LIGHTMAP_ADD  -#li MATERIAL_TYPE_LIGHTMAP_M2  -#li MATERIAL_TYPE_LIGHTMAP_M4  -#li MATERIAL_TYPE_LIGHTMAP_LIGHTING  -#li MATERIAL_TYPE_LIGHTMAP_LIGHTING_M2  -#li MATERIAL_TYPE_LIGHTMAP_LIGHTING_M4  -#li MATERIAL_TYPE_DETAIL_MAP  -#li MATERIAL_TYPE_SPHERE_MAP  -#li MATERIAL_TYPE_REFLECTION_2_LAYER  -#li MATERIAL_TYPE_TRANSPARENT_ADD_COLOR  -#li MATERIAL_TYPE_TRANSPARENT_ALPHA_CHANNEL  -#li MATERIAL_TYPE_TRANSPARENT_ALPHA_CHANNEL_REF  -#li MATERIAL_TYPE_TRANSPARENT_VERTEX_ALPHA  -#li MATERIAL_TYPE_TRANSPARENT_REFLECTION_2_LAYER  -#li MATERIAL_TYPE_NORMAL_MAP_SOLID  -#li MATERIAL_TYPE_NORMAL_MAP_TRANSPARENT_ADD_COLOR  -#li MATERIAL_TYPE_NORMAL_MAP_TRANSPARENT_VERTEX_ALPHA  -#li MATERIAL_TYPE_PARALLAX_MAP_SOLID  -#li MATERIAL_TYPE_PARALLAX_MAP_TRANSPARENT_ADD_COLOR  -#li MATERIAL_TYPE_PARALLAX_MAP_TRANSPARENT_VERTEX_ALPHA  -#li MATERIAL_TYPE_ONETEXTURE_BLEND  -#li MATERIAL_TYPE_FORCE_32BIT  -#/list - -#ref GetActorMaterialType GetActorMaterial diff --git a/doc/bu/files/setactormd2animation.txt b/doc/bu/files/setactormd2animation.txt deleted file mode 100644 index 0edae0a..0000000 --- a/doc/bu/files/setactormd2animation.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SetActorMD2Animation [RCBasic Doc] -#header sub SetActorMD2Animation( actor, anim ) - - diff --git a/doc/bu/files/setactormd2animationbyname.txt b/doc/bu/files/setactormd2animationbyname.txt deleted file mode 100644 index 3e9a768..0000000 --- a/doc/bu/files/setactormd2animationbyname.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SetActorMD2AnimationByName [RCBasic Doc] -#header sub SetActorMD2AnimationByName( actor, anim_name$ ) - - diff --git a/doc/bu/files/setactorposition.txt b/doc/bu/files/setactorposition.txt deleted file mode 100644 index 3abd393..0000000 --- a/doc/bu/files/setactorposition.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SetActorPosition [RCBasic Doc] -#header sub SetActorPosition( actor, x, y, z ) - - diff --git a/doc/bu/files/setactorrotation.txt b/doc/bu/files/setactorrotation.txt deleted file mode 100644 index 649e2c3..0000000 --- a/doc/bu/files/setactorrotation.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SetActorRotation [RCBasic Doc] -#header sub SetActorRotation( actor, x, y, z ) - - diff --git a/doc/bu/files/setactorscale.txt b/doc/bu/files/setactorscale.txt deleted file mode 100644 index d8cadea..0000000 --- a/doc/bu/files/setactorscale.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SetActorScale [RCBasic Doc] -#header sub SetActorScale( actor, x, y, z ) - - diff --git a/doc/bu/files/setactorsleepthresholds.txt b/doc/bu/files/setactorsleepthresholds.txt deleted file mode 100644 index 34ca887..0000000 --- a/doc/bu/files/setactorsleepthresholds.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setActorSleepThresholds [RCBasic Doc] -#header sub setActorSleepThresholds( actor, linear, angular) - - diff --git a/doc/bu/files/setactorsolid.txt b/doc/bu/files/setactorsolid.txt deleted file mode 100644 index 2dcf2e2..0000000 --- a/doc/bu/files/setactorsolid.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SetActorSolid [RCBasic Doc] -#header sub SetActorSolid(actor, flag) - - diff --git a/doc/bu/files/setactortexture.txt b/doc/bu/files/setactortexture.txt deleted file mode 100644 index ad569e4..0000000 --- a/doc/bu/files/setactortexture.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setActorTexture [RCBasic Doc] -#header sub setActorTexture( actor, layer, image_id) - - diff --git a/doc/bu/files/setactorvisible.txt b/doc/bu/files/setactorvisible.txt deleted file mode 100644 index 8750879..0000000 --- a/doc/bu/files/setactorvisible.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SetActorVisible [RCBasic Doc] -#header sub SetActorVisible( actor, flag ) - - diff --git a/doc/bu/files/setbilinearfilter.txt b/doc/bu/files/setbilinearfilter.txt deleted file mode 100644 index 1c9c7d4..0000000 --- a/doc/bu/files/setbilinearfilter.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setBilinearFilter [RCBasic Doc] -#header sub setBilinearFilter( flag ) - - diff --git a/doc/bu/files/setblendmode.txt b/doc/bu/files/setblendmode.txt deleted file mode 100644 index 66d69a8..0000000 --- a/doc/bu/files/setblendmode.txt +++ /dev/null @@ -1,23 +0,0 @@ -#title SetBlendMode [RCBasic Doc] -#header sub SetBlendMode( blend_mode ) - -Sets the current blend mode - -Note: Only applies to 2D image drawing commands - -Possible Blend Modes -#list ul -#li BLEND_MODE_NONE -#li BLEND_MODE_ADD -#li BLEND_MODE_SUBTRACT -#li BLEND_MODE_REVSUBTRACT -#li BLEND_MODE_MIN -#li BLEND_MODE_MAX -#li BLEND_MODE_MIN_FACTOR -#li BLEND_MODE_MAX_FACTOR -#li BLEND_MODE_MIN_ALPHA -#li BLEND_MODE_MAX_ALPHA -#/list - -#ref SetBlendMode - diff --git a/doc/bu/files/setcameraaspectratio.txt b/doc/bu/files/setcameraaspectratio.txt deleted file mode 100644 index f18b53b..0000000 --- a/doc/bu/files/setcameraaspectratio.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title SetCameraAspectRatio [RCBasic Doc] -#header sub SetCameraAspectRatio( aspect ) - -Sets the aspect ratio for the active canvas camera - -#ref GetCameraAspectRatio diff --git a/doc/bu/files/setcamerafarvalue.txt b/doc/bu/files/setcamerafarvalue.txt deleted file mode 100644 index b0fa625..0000000 --- a/doc/bu/files/setcamerafarvalue.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SetCameraFarValue [RCBasic Doc] -#header sub SetCameraFarValue( zf ) - - diff --git a/doc/bu/files/setcamerafov.txt b/doc/bu/files/setcamerafov.txt deleted file mode 100644 index 3e4ade2..0000000 --- a/doc/bu/files/setcamerafov.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SetCameraFOV [RCBasic Doc] -#header sub SetCameraFOV( fov ) - - diff --git a/doc/bu/files/setcameranearvalue.txt b/doc/bu/files/setcameranearvalue.txt deleted file mode 100644 index 56c78be..0000000 --- a/doc/bu/files/setcameranearvalue.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SetCameraNearValue [RCBasic Doc] -#header sub SetCameraNearValue( zn ) - - diff --git a/doc/bu/files/setcameraposition.txt b/doc/bu/files/setcameraposition.txt deleted file mode 100644 index 5c73b0b..0000000 --- a/doc/bu/files/setcameraposition.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SetCameraPosition [RCBasic Doc] -#header sub SetCameraPosition( x, y, z) - - diff --git a/doc/bu/files/setcamerarotation.txt b/doc/bu/files/setcamerarotation.txt deleted file mode 100644 index f240439..0000000 --- a/doc/bu/files/setcamerarotation.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SetCameraRotation [RCBasic Doc] -#header sub SetCameraRotation( x, y, z) - - diff --git a/doc/bu/files/setcanvas3d.txt b/doc/bu/files/setcanvas3d.txt deleted file mode 100644 index 6a06036..0000000 --- a/doc/bu/files/setcanvas3d.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SetCanvas3D [RCBasic Doc] -#header Sub SetCanvas3D(c_num, flag) - - diff --git a/doc/bu/files/setcanvasalpha.txt b/doc/bu/files/setcanvasalpha.txt deleted file mode 100644 index 7a26a70..0000000 --- a/doc/bu/files/setcanvasalpha.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SetCanvasAlpha [RCBasic Doc] -#header sub SetCanvasAlpha(c_num, a) - - diff --git a/doc/bu/files/setcanvascolormod.txt b/doc/bu/files/setcanvascolormod.txt deleted file mode 100644 index 8f7ac62..0000000 --- a/doc/bu/files/setcanvascolormod.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SetCanvasColorMod [RCBasic Doc] -#header sub SetCanvasColorMod(c_num, c) - - diff --git a/doc/bu/files/setcanvasoffset.txt b/doc/bu/files/setcanvasoffset.txt deleted file mode 100644 index 57a6d0c..0000000 --- a/doc/bu/files/setcanvasoffset.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SetCanvasOffset [RCBasic Doc] -#header sub SetCanvasOffset(c_num, x, y) - - diff --git a/doc/bu/files/setcanvasviewport.txt b/doc/bu/files/setcanvasviewport.txt deleted file mode 100644 index 8b7afa6..0000000 --- a/doc/bu/files/setcanvasviewport.txt +++ /dev/null @@ -1,7 +0,0 @@ -#title SetCanvasViewport [RCBasic Doc] -#header sub SetCanvasViewport(cnum, x, y, w, h) - -Sets the position and size of a canvas viewport - -#ref GetCanvasViewport - diff --git a/doc/bu/files/setcanvasvisible.txt b/doc/bu/files/setcanvasvisible.txt deleted file mode 100644 index 5b6aa06..0000000 --- a/doc/bu/files/setcanvasvisible.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SetCanvasVisible [RCBasic Doc] -#header sub SetCanvasVisible(c_num, flag) - - diff --git a/doc/bu/files/setcanvasz.txt b/doc/bu/files/setcanvasz.txt deleted file mode 100644 index ec72dd1..0000000 --- a/doc/bu/files/setcanvasz.txt +++ /dev/null @@ -1,8 +0,0 @@ -#title SetCanvasZ [RCBasic Doc] -#header sub SetCanvasZ(c_num, z) - -Sets the Canvas Z Order. - -Note: Canvases with a lower Z order are drawn first and those with higher values will be drawn on top - -#ref SetCanvasZ diff --git a/doc/bu/files/setchanneldistance.txt b/doc/bu/files/setchanneldistance.txt deleted file mode 100644 index cfb814d..0000000 --- a/doc/bu/files/setchanneldistance.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SetChannelDistance [RCBasic Doc] -#header function SetChannelDistance(channel, dist_value) - - diff --git a/doc/bu/files/setchannelpanning.txt b/doc/bu/files/setchannelpanning.txt deleted file mode 100644 index e4840ca..0000000 --- a/doc/bu/files/setchannelpanning.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SetChannelPanning [RCBasic Doc] -#header function SetChannelPanning(channel, left_value, right_value) - - diff --git a/doc/bu/files/setchannelspaceposition.txt b/doc/bu/files/setchannelspaceposition.txt deleted file mode 100644 index 53f1868..0000000 --- a/doc/bu/files/setchannelspaceposition.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SetChannelSpacePosition [RCBasic Doc] -#header function SetChannelSpacePosition(channel, angle, distance) - - diff --git a/doc/bu/files/setchannelvolume.txt b/doc/bu/files/setchannelvolume.txt deleted file mode 100644 index 1d66782..0000000 --- a/doc/bu/files/setchannelvolume.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SetChannelVolume [RCBasic Doc] -#header sub SetChannelVolume(channel, vol) - - diff --git a/doc/bu/files/setclearcolor.txt b/doc/bu/files/setclearcolor.txt deleted file mode 100644 index 3989e96..0000000 --- a/doc/bu/files/setclearcolor.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SetClearColor [RCBasic Doc] -#header sub SetClearColor(c) - - diff --git a/doc/bu/files/setclipboardtext.txt b/doc/bu/files/setclipboardtext.txt deleted file mode 100644 index a188ec5..0000000 --- a/doc/bu/files/setclipboardtext.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SetClipboardText [RCBasic Doc] -#header sub SetClipboardText(txt$) - - diff --git a/doc/bu/files/setcolor.txt b/doc/bu/files/setcolor.txt deleted file mode 100644 index b292335..0000000 --- a/doc/bu/files/setcolor.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SetColor [RCBasic Doc] -#header sub SetColor(c) - - diff --git a/doc/bu/files/setconelimit.txt b/doc/bu/files/setconelimit.txt deleted file mode 100644 index 9633284..0000000 --- a/doc/bu/files/setconelimit.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setConeLimit [RCBasic Doc] -#header sub setConeLimit( constraint_id, swingSpan1, swingSpan2, twistSpan, softness, bias_factor, relaxation_factor) - - diff --git a/doc/bu/files/setconstraintangularonly.txt b/doc/bu/files/setconstraintangularonly.txt deleted file mode 100644 index 804be68..0000000 --- a/doc/bu/files/setconstraintangularonly.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setConstraintAngularOnly [RCBasic Doc] -#header sub setConstraintAngularOnly( constraint_id, flag) - - diff --git a/doc/bu/files/setconstraintaxis.txt b/doc/bu/files/setconstraintaxis.txt deleted file mode 100644 index 2f30401..0000000 --- a/doc/bu/files/setconstraintaxis.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setConstraintAxis [RCBasic Doc] -#header sub setConstraintAxis( constraint_id, x, y, z) - - diff --git a/doc/bu/files/setconstraintbreakingimpulsethreshold.txt b/doc/bu/files/setconstraintbreakingimpulsethreshold.txt deleted file mode 100644 index 853ead1..0000000 --- a/doc/bu/files/setconstraintbreakingimpulsethreshold.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setConstraintBreakingImpulseThreshold [RCBasic Doc] -#header sub setConstraintBreakingImpulseThreshold( constraint_id, threshold) - - diff --git a/doc/bu/files/setconstraintdamping.txt b/doc/bu/files/setconstraintdamping.txt deleted file mode 100644 index 7b6801c..0000000 --- a/doc/bu/files/setconstraintdamping.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setConstraintDamping [RCBasic Doc] -#header sub setConstraintDamping( constraint_id, damping) - - diff --git a/doc/bu/files/setconstraintdampingdirang.txt b/doc/bu/files/setconstraintdampingdirang.txt deleted file mode 100644 index 2997440..0000000 --- a/doc/bu/files/setconstraintdampingdirang.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setConstraintDampingDirAng [RCBasic Doc] -#header sub setConstraintDampingDirAng( constraint_id, n) - - diff --git a/doc/bu/files/setconstraintdampingdirlin.txt b/doc/bu/files/setconstraintdampingdirlin.txt deleted file mode 100644 index c9ee750..0000000 --- a/doc/bu/files/setconstraintdampingdirlin.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setConstraintDampingDirLin [RCBasic Doc] -#header sub setConstraintDampingDirLin( constraint_id, n) - - diff --git a/doc/bu/files/setconstraintdampinglimang.txt b/doc/bu/files/setconstraintdampinglimang.txt deleted file mode 100644 index ef342ae..0000000 --- a/doc/bu/files/setconstraintdampinglimang.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setConstraintDampingLimAng [RCBasic Doc] -#header sub setConstraintDampingLimAng( constraint_id, n) - - diff --git a/doc/bu/files/setconstraintdampinglimlin.txt b/doc/bu/files/setconstraintdampinglimlin.txt deleted file mode 100644 index 3401c22..0000000 --- a/doc/bu/files/setconstraintdampinglimlin.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setConstraintDampingLimLin [RCBasic Doc] -#header sub setConstraintDampingLimLin( constraint_id, n) - - diff --git a/doc/bu/files/setconstraintdampingorthoang.txt b/doc/bu/files/setconstraintdampingorthoang.txt deleted file mode 100644 index 51615d2..0000000 --- a/doc/bu/files/setconstraintdampingorthoang.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setConstraintDampingOrthoAng [RCBasic Doc] -#header sub setConstraintDampingOrthoAng( constraint_id, n) - - diff --git a/doc/bu/files/setconstraintdampingortholin.txt b/doc/bu/files/setconstraintdampingortholin.txt deleted file mode 100644 index f07848a..0000000 --- a/doc/bu/files/setconstraintdampingortholin.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setConstraintDampingOrthoLin [RCBasic Doc] -#header sub setConstraintDampingOrthoLin( constraint_id, n) - - diff --git a/doc/bu/files/setconstraintfixthresh.txt b/doc/bu/files/setconstraintfixthresh.txt deleted file mode 100644 index a65a5dd..0000000 --- a/doc/bu/files/setconstraintfixthresh.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setConstraintFixThresh [RCBasic Doc] -#header sub setConstraintFixThresh( constraint_id, fixThresh) - - diff --git a/doc/bu/files/setconstraintframes.txt b/doc/bu/files/setconstraintframes.txt deleted file mode 100644 index 554e0a8..0000000 --- a/doc/bu/files/setconstraintframes.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setConstraintFrames [RCBasic Doc] -#header sub setConstraintFrames( constraint_id, frameA_matrix, frameB_matrix) - - diff --git a/doc/bu/files/setconstraintloweranglimit.txt b/doc/bu/files/setconstraintloweranglimit.txt deleted file mode 100644 index 3881608..0000000 --- a/doc/bu/files/setconstraintloweranglimit.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setConstraintLowerAngLimit [RCBasic Doc] -#header sub setConstraintLowerAngLimit( constraint_id, n) - - diff --git a/doc/bu/files/setconstraintlowerlinlimit.txt b/doc/bu/files/setconstraintlowerlinlimit.txt deleted file mode 100644 index 3ad7a53..0000000 --- a/doc/bu/files/setconstraintlowerlinlimit.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setConstraintLowerLinLimit [RCBasic Doc] -#header sub setConstraintLowerLinLimit( constraint_id, n) - - diff --git a/doc/bu/files/setconstraintpivota.txt b/doc/bu/files/setconstraintpivota.txt deleted file mode 100644 index 48b87d8..0000000 --- a/doc/bu/files/setconstraintpivota.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setConstraintPivotA [RCBasic Doc] -#header sub setConstraintPivotA( constraint_id, x, y, z) - - diff --git a/doc/bu/files/setconstraintpivotb.txt b/doc/bu/files/setconstraintpivotb.txt deleted file mode 100644 index b75cd89..0000000 --- a/doc/bu/files/setconstraintpivotb.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setConstraintPivotB [RCBasic Doc] -#header sub setConstraintPivotB( constraint_id, x, y, z) - - diff --git a/doc/bu/files/setconstraintrestitutiondirang.txt b/doc/bu/files/setconstraintrestitutiondirang.txt deleted file mode 100644 index 0180b56..0000000 --- a/doc/bu/files/setconstraintrestitutiondirang.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setConstraintRestitutionDirAng [RCBasic Doc] -#header sub setConstraintRestitutionDirAng( constraint_id, n) - - diff --git a/doc/bu/files/setconstraintrestitutiondirlin.txt b/doc/bu/files/setconstraintrestitutiondirlin.txt deleted file mode 100644 index b41b9bd..0000000 --- a/doc/bu/files/setconstraintrestitutiondirlin.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setConstraintRestitutionDirLin [RCBasic Doc] -#header sub setConstraintRestitutionDirLin( constraint_id, n) - - diff --git a/doc/bu/files/setconstraintrestitutionlimang.txt b/doc/bu/files/setconstraintrestitutionlimang.txt deleted file mode 100644 index bd0f13a..0000000 --- a/doc/bu/files/setconstraintrestitutionlimang.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setConstraintRestitutionLimAng [RCBasic Doc] -#header sub setConstraintRestitutionLimAng( constraint_id, n) - - diff --git a/doc/bu/files/setconstraintrestitutionlimlin.txt b/doc/bu/files/setconstraintrestitutionlimlin.txt deleted file mode 100644 index 08ca5c5..0000000 --- a/doc/bu/files/setconstraintrestitutionlimlin.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setConstraintRestitutionLimLin [RCBasic Doc] -#header sub setConstraintRestitutionLimLin( constraint_id, n) - - diff --git a/doc/bu/files/setconstraintrestitutionorthoang.txt b/doc/bu/files/setconstraintrestitutionorthoang.txt deleted file mode 100644 index b61ff84..0000000 --- a/doc/bu/files/setconstraintrestitutionorthoang.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setConstraintRestitutionOrthoAng [RCBasic Doc] -#header sub setConstraintRestitutionOrthoAng( constraint_id, n) - - diff --git a/doc/bu/files/setconstraintrestitutionortholin.txt b/doc/bu/files/setconstraintrestitutionortholin.txt deleted file mode 100644 index 823363e..0000000 --- a/doc/bu/files/setconstraintrestitutionortholin.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setConstraintRestitutionOrthoLin [RCBasic Doc] -#header sub setConstraintRestitutionOrthoLin( constraint_id, n) - - diff --git a/doc/bu/files/setconstraintsoftnessdirang.txt b/doc/bu/files/setconstraintsoftnessdirang.txt deleted file mode 100644 index cadb266..0000000 --- a/doc/bu/files/setconstraintsoftnessdirang.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setConstraintSoftnessDirAng [RCBasic Doc] -#header sub setConstraintSoftnessDirAng( constraint_id, n) - - diff --git a/doc/bu/files/setconstraintsoftnessdirlin.txt b/doc/bu/files/setconstraintsoftnessdirlin.txt deleted file mode 100644 index 3175a26..0000000 --- a/doc/bu/files/setconstraintsoftnessdirlin.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setConstraintSoftnessDirLin [RCBasic Doc] -#header sub setConstraintSoftnessDirLin( constraint_id, n) - - diff --git a/doc/bu/files/setconstraintsoftnesslimang.txt b/doc/bu/files/setconstraintsoftnesslimang.txt deleted file mode 100644 index d95a1dd..0000000 --- a/doc/bu/files/setconstraintsoftnesslimang.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setConstraintSoftnessLimAng [RCBasic Doc] -#header sub setConstraintSoftnessLimAng( constraint_id, n) - - diff --git a/doc/bu/files/setconstraintsoftnesslimlin.txt b/doc/bu/files/setconstraintsoftnesslimlin.txt deleted file mode 100644 index 9ad9c87..0000000 --- a/doc/bu/files/setconstraintsoftnesslimlin.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setConstraintSoftnessLimLin [RCBasic Doc] -#header sub setConstraintSoftnessLimLin( constraint_id, n) - - diff --git a/doc/bu/files/setconstraintsoftnessorthoang.txt b/doc/bu/files/setconstraintsoftnessorthoang.txt deleted file mode 100644 index 7d6ec32..0000000 --- a/doc/bu/files/setconstraintsoftnessorthoang.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setConstraintSoftnessOrthoAng [RCBasic Doc] -#header sub setConstraintSoftnessOrthoAng( constraint_id, n) - - diff --git a/doc/bu/files/setconstraintsoftnessortholin.txt b/doc/bu/files/setconstraintsoftnessortholin.txt deleted file mode 100644 index aa87256..0000000 --- a/doc/bu/files/setconstraintsoftnessortholin.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setConstraintSoftnessOrthoLin [RCBasic Doc] -#header sub setConstraintSoftnessOrthoLin( constraint_id, n) - - diff --git a/doc/bu/files/setconstraintsolveriterations.txt b/doc/bu/files/setconstraintsolveriterations.txt deleted file mode 100644 index 6c375bb..0000000 --- a/doc/bu/files/setconstraintsolveriterations.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setConstraintSolverIterations [RCBasic Doc] -#header sub setConstraintSolverIterations( constraint_id, num) - - diff --git a/doc/bu/files/setconstraintupperanglimit.txt b/doc/bu/files/setconstraintupperanglimit.txt deleted file mode 100644 index da069a7..0000000 --- a/doc/bu/files/setconstraintupperanglimit.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setConstraintUpperAngLimit [RCBasic Doc] -#header sub setConstraintUpperAngLimit( constraint_id, n) - - diff --git a/doc/bu/files/setconstraintupperlinlimit.txt b/doc/bu/files/setconstraintupperlinlimit.txt deleted file mode 100644 index b896f16..0000000 --- a/doc/bu/files/setconstraintupperlinlimit.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setConstraintUpperLinLimit [RCBasic Doc] -#header sub setConstraintUpperLinLimit( constraint_id, n) - - diff --git a/doc/bu/files/setenv.txt b/doc/bu/files/setenv.txt deleted file mode 100644 index ee2ad06..0000000 --- a/doc/bu/files/setenv.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SetEnv [RCBasic Doc] -#header sub SetEnv(var$, value$) - - diff --git a/doc/bu/files/setfont.txt b/doc/bu/files/setfont.txt deleted file mode 100644 index 0bdc24d..0000000 --- a/doc/bu/files/setfont.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SetFont [RCBasic Doc] -#header sub SetFont(slot) - - diff --git a/doc/bu/files/setgravity3d.txt b/doc/bu/files/setgravity3d.txt deleted file mode 100644 index 4d5fd88..0000000 --- a/doc/bu/files/setgravity3d.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SetGravity3D [RCBasic Doc] -#header sub SetGravity3D(x, y, z) - - diff --git a/doc/bu/files/sethingelimit.txt b/doc/bu/files/sethingelimit.txt deleted file mode 100644 index 4b2264b..0000000 --- a/doc/bu/files/sethingelimit.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setHingeLimit [RCBasic Doc] -#header sub setHingeLimit( constraint_id, low, high, softness, bias_factor, relaxation_factor) - - diff --git a/doc/bu/files/setidentitymatrix.txt b/doc/bu/files/setidentitymatrix.txt deleted file mode 100644 index b0f6998..0000000 --- a/doc/bu/files/setidentitymatrix.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SetIdentityMatrix [RCBasic Doc] -#header sub SetIdentityMatrix(mA, n) - - diff --git a/doc/bu/files/setimagealpha.txt b/doc/bu/files/setimagealpha.txt deleted file mode 100644 index 6f1f986..0000000 --- a/doc/bu/files/setimagealpha.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SetImageAlpha [RCBasic Doc] -#header sub SetImageAlpha(slot, a) - - diff --git a/doc/bu/files/setimagecolormod.txt b/doc/bu/files/setimagecolormod.txt deleted file mode 100644 index 7a0fc77..0000000 --- a/doc/bu/files/setimagecolormod.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SetImageColorMod [RCBasic Doc] -#header sub SetImageColorMod(slot, c) - - diff --git a/doc/bu/files/setlightambientcolor.txt b/doc/bu/files/setlightambientcolor.txt deleted file mode 100644 index 8ebec04..0000000 --- a/doc/bu/files/setlightambientcolor.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SetLightAmbientColor [RCBasic Doc] -#header sub SetLightAmbientColor( actor, color ) - - diff --git a/doc/bu/files/setlightattenuation.txt b/doc/bu/files/setlightattenuation.txt deleted file mode 100644 index 2bcba8d..0000000 --- a/doc/bu/files/setlightattenuation.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SetLightAttenuation [RCBasic Doc] -#header sub SetLightAttenuation( actor, l_constant, l_linear, l_quadratic ) - - diff --git a/doc/bu/files/setlightdiffusecolor.txt b/doc/bu/files/setlightdiffusecolor.txt deleted file mode 100644 index b8dcc53..0000000 --- a/doc/bu/files/setlightdiffusecolor.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SetLightDiffuseColor [RCBasic Doc] -#header sub SetLightDiffuseColor( actor, color ) - - diff --git a/doc/bu/files/setlightfalloff.txt b/doc/bu/files/setlightfalloff.txt deleted file mode 100644 index 0118536..0000000 --- a/doc/bu/files/setlightfalloff.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SetLightFalloff [RCBasic Doc] -#header sub SetLightFalloff( actor, falloff ) - - diff --git a/doc/bu/files/setlightinnercone.txt b/doc/bu/files/setlightinnercone.txt deleted file mode 100644 index 8ac95c8..0000000 --- a/doc/bu/files/setlightinnercone.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SetLightInnerCone [RCBasic Doc] -#header sub SetLightInnerCone( actor, angle ) - - diff --git a/doc/bu/files/setlightoutercone.txt b/doc/bu/files/setlightoutercone.txt deleted file mode 100644 index 8adb2a4..0000000 --- a/doc/bu/files/setlightoutercone.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SetLightOuterCone [RCBasic Doc] -#header sub SetLightOuterCone( actor, angle) - - diff --git a/doc/bu/files/setlightradius.txt b/doc/bu/files/setlightradius.txt deleted file mode 100644 index df66c2c..0000000 --- a/doc/bu/files/setlightradius.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title SetLightRadius [RCBasic Doc] -#header sub SetLightRadius( actor, radius ) - -Sets the radius of a light - -#ref GetLightRadius diff --git a/doc/bu/files/setlightshadowcast.txt b/doc/bu/files/setlightshadowcast.txt deleted file mode 100644 index 596a0e2..0000000 --- a/doc/bu/files/setlightshadowcast.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setLightShadowCast [RCBasic Doc] -#header sub setLightShadowCast( actor, flag ) - - diff --git a/doc/bu/files/setlightspecularcolor.txt b/doc/bu/files/setlightspecularcolor.txt deleted file mode 100644 index 2c4f4ff..0000000 --- a/doc/bu/files/setlightspecularcolor.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SetLightSpecularColor [RCBasic Doc] -#header sub SetLightSpecularColor( actor, color ) - -Sets the specular color of a light diff --git a/doc/bu/files/setlighttype.txt b/doc/bu/files/setlighttype.txt deleted file mode 100644 index c379a6a..0000000 --- a/doc/bu/files/setlighttype.txt +++ /dev/null @@ -1,14 +0,0 @@ -#title setLightType [RCBasic Doc] -#header sub setLightType( actor, light_type ) - -Sets the type of light - -Possible Light Types -#list ul -#li LIGHT_TYPE_POINT -#li LIGHT_TYPE_POINT -#li LIGHT_TYPE_POINT -#/light - -#ref SetLightType - diff --git a/doc/bu/files/setmaterialambientcolor.txt b/doc/bu/files/setmaterialambientcolor.txt deleted file mode 100644 index d1bd02f..0000000 --- a/doc/bu/files/setmaterialambientcolor.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setMaterialAmbientColor [RCBasic Doc] -#header sub setMaterialAmbientColor( material_id, color) - -Sets the ambient color of a material diff --git a/doc/bu/files/setmaterialantialiasing.txt b/doc/bu/files/setmaterialantialiasing.txt deleted file mode 100644 index 623d69a..0000000 --- a/doc/bu/files/setmaterialantialiasing.txt +++ /dev/null @@ -1,17 +0,0 @@ -#title setMaterialAntiAliasing [RCBasic Doc] -#header sub setMaterialAntiAliasing( material_id, aa) - -Sets the anti-aliasing mode for the material - -Possible modes returned -#list -#li AA_MODE_OFF=0, -#li AA_MODE_SIMPLE=1, -#li AA_MODE_QUALITY=3, -#li AA_MODE_LINE_SMOOTH=4, -#li AA_MODE_POINT_SMOOTH=8, -#li AA_MODE_FULL_BASIC=15, -#li AA_MODE_ALPHA_TO_COVERAGE=16 -#/list - -#ref GetMaterialAntiAliasing diff --git a/doc/bu/files/setmaterialbackfaceculling.txt b/doc/bu/files/setmaterialbackfaceculling.txt deleted file mode 100644 index 5d4e682..0000000 --- a/doc/bu/files/setmaterialbackfaceculling.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title setMaterialBackfaceCulling [RCBasic Doc] -#header sub setMaterialBackfaceCulling( material_id, flag) - -Enables or disables material backface culling - -#ref GetMaterialBackfaceCulling diff --git a/doc/bu/files/setmaterialblendfactor.txt b/doc/bu/files/setmaterialblendfactor.txt deleted file mode 100644 index eb61c38..0000000 --- a/doc/bu/files/setmaterialblendfactor.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setMaterialBlendFactor [RCBasic Doc] -#header sub setMaterialBlendFactor( material_id, bf) - - diff --git a/doc/bu/files/setmaterialblendmode.txt b/doc/bu/files/setmaterialblendmode.txt deleted file mode 100644 index 15f7c6c..0000000 --- a/doc/bu/files/setmaterialblendmode.txt +++ /dev/null @@ -1,21 +0,0 @@ -#title setMaterialBlendMode [RCBasic Doc] -#header sub setMaterialBlendMode( material_id, blend_mode) - -Sets a material's blend mode - -Possible Blend Modes -#list ul -#li BLEND_MODE_NONE -#li BLEND_MODE_ADD -#li BLEND_MODE_SUBTRACT -#li BLEND_MODE_REVSUBTRACT -#li BLEND_MODE_MIN -#li BLEND_MODE_MAX -#li BLEND_MODE_MIN_FACTOR -#li BLEND_MODE_MAX_FACTOR -#li BLEND_MODE_MIN_ALPHA -#li BLEND_MODE_MAX_ALPHA -#/list - -#ref SetMaterialBlendMode - diff --git a/doc/bu/files/setmaterialcolormask.txt b/doc/bu/files/setmaterialcolormask.txt deleted file mode 100644 index 7a496c8..0000000 --- a/doc/bu/files/setmaterialcolormask.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setMaterialColorMask [RCBasic Doc] -#header sub setMaterialColorMask( material_id, color_mask) - - diff --git a/doc/bu/files/setmaterialcolormode.txt b/doc/bu/files/setmaterialcolormode.txt deleted file mode 100644 index 689374e..0000000 --- a/doc/bu/files/setmaterialcolormode.txt +++ /dev/null @@ -1,16 +0,0 @@ -#title setMaterialColorMode [RCBasic Doc] -#header sub setMaterialColorMode( material_id, color_mode) - -Sets the color mode of a material - -Possible modes -#list ul -#li COLOR_MODE_NONE -#li COLOR_MODE_DIFFUSE -#li COLOR_MODE_AMBIENT -#li COLOR_MODE_EMISSIVE -#li COLOR_MODE_SPECULAR -#li COLOR_MODE_DIFFUSE_AND_AMBIENT -#/list - -#ref GetMaterialColorMode diff --git a/doc/bu/files/setmaterialdiffusecolor.txt b/doc/bu/files/setmaterialdiffusecolor.txt deleted file mode 100644 index 559876e..0000000 --- a/doc/bu/files/setmaterialdiffusecolor.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setMaterialDiffuseColor [RCBasic Doc] -#header sub setMaterialDiffuseColor( material_id, color) - - diff --git a/doc/bu/files/setmaterialemissivecolor.txt b/doc/bu/files/setmaterialemissivecolor.txt deleted file mode 100644 index 3e4419f..0000000 --- a/doc/bu/files/setmaterialemissivecolor.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setMaterialEmissiveColor [RCBasic Doc] -#header sub setMaterialEmissiveColor( material_id, color) - - diff --git a/doc/bu/files/setmaterialflag.txt b/doc/bu/files/setmaterialflag.txt deleted file mode 100644 index 197b44b..0000000 --- a/doc/bu/files/setmaterialflag.txt +++ /dev/null @@ -1,30 +0,0 @@ -#title setMaterialFlag [RCBasic Doc] -#header sub setMaterialFlag( material_id, material_flag, f_value) - -Sets the value of the specified material flag - -Possible values for flag: -#list -#li MATERIAL_FLAG_WIREFRAME  -#li MATERIAL_FLAG_POINTCLOUD  -#li MATERIAL_FLAG_GOURAUD_SHADING  -#li MATERIAL_FLAG_LIGHTING  -#li MATERIAL_FLAG_ZBUFFER  -#li MATERIAL_FLAG_ZWRITE_ENABLE  -#li MATERIAL_FLAG_BACK_FACE_CULLING  -#li MATERIAL_FLAG_FRONT_FACE_CULLING  -#li MATERIAL_FLAG_BILINEAR_FILTER  -#li MATERIAL_FLAG_TRILINEAR_FILTER  -#li MATERIAL_FLAG_ANISOTROPIC_FILTER  -#li MATERIAL_FLAG_FOG_ENABLE  -#li MATERIAL_FLAG_NORMALIZE_NORMALS  -#li MATERIAL_FLAG_TEXTURE_WRAP  -#li MATERIAL_FLAG_ANTI_ALIASING  -#li MATERIAL_FLAG_COLOR_MASK  -#li MATERIAL_FLAG_COLOR_MATERIAL  -#li MATERIAL_FLAG_USE_MIP_MAPS  -#li MATERIAL_FLAG_BLEND_OPERATION  -#li MATERIAL_FLAG_POLYGON_OFFSET  -#/list - -#ref GetMaterialFlag GetActorMaterialFlag diff --git a/doc/bu/files/setmaterialfog.txt b/doc/bu/files/setmaterialfog.txt deleted file mode 100644 index b16170d..0000000 --- a/doc/bu/files/setmaterialfog.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setMaterialFog [RCBasic Doc] -#header sub setMaterialFog( material_id, flag) - - diff --git a/doc/bu/files/setmaterialfrontfaceculling.txt b/doc/bu/files/setmaterialfrontfaceculling.txt deleted file mode 100644 index d14c0dd..0000000 --- a/doc/bu/files/setmaterialfrontfaceculling.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setMaterialFrontfaceCulling [RCBasic Doc] -#header sub setMaterialFrontfaceCulling( material_id, flag) - - diff --git a/doc/bu/files/setmaterialgouraudshading.txt b/doc/bu/files/setmaterialgouraudshading.txt deleted file mode 100644 index 3589db8..0000000 --- a/doc/bu/files/setmaterialgouraudshading.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setMaterialGouraudShading [RCBasic Doc] -#header sub setMaterialGouraudShading( material_id, flag) - - diff --git a/doc/bu/files/setmateriallighting.txt b/doc/bu/files/setmateriallighting.txt deleted file mode 100644 index 25b2b24..0000000 --- a/doc/bu/files/setmateriallighting.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setMaterialLighting [RCBasic Doc] -#header sub setMaterialLighting( material_id, flag) - - diff --git a/doc/bu/files/setmaterialnormalize.txt b/doc/bu/files/setmaterialnormalize.txt deleted file mode 100644 index 7ceb8f4..0000000 --- a/doc/bu/files/setmaterialnormalize.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setMaterialNormalize [RCBasic Doc] -#header sub setMaterialNormalize( material_id, flag) - - diff --git a/doc/bu/files/setmaterialpointcloud.txt b/doc/bu/files/setmaterialpointcloud.txt deleted file mode 100644 index 28cba47..0000000 --- a/doc/bu/files/setmaterialpointcloud.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setMaterialPointCloud [RCBasic Doc] -#header sub setMaterialPointCloud( material_id, flag) - - diff --git a/doc/bu/files/setmaterialshininess.txt b/doc/bu/files/setmaterialshininess.txt deleted file mode 100644 index 7dcae4e..0000000 --- a/doc/bu/files/setmaterialshininess.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setMaterialShininess [RCBasic Doc] -#header sub setMaterialShininess( material_id, shininess) - - diff --git a/doc/bu/files/setmaterialspecularcolor.txt b/doc/bu/files/setmaterialspecularcolor.txt deleted file mode 100644 index 791dd76..0000000 --- a/doc/bu/files/setmaterialspecularcolor.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setMaterialSpecularColor [RCBasic Doc] -#header sub setMaterialSpecularColor( material_id, color) - - diff --git a/doc/bu/files/setmaterialtexture.txt b/doc/bu/files/setmaterialtexture.txt deleted file mode 100644 index 67085bd..0000000 --- a/doc/bu/files/setmaterialtexture.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setMaterialTexture [RCBasic Doc] -#header sub setMaterialTexture( material_id, level, img_id) - - diff --git a/doc/bu/files/setmaterialtexturecanvas.txt b/doc/bu/files/setmaterialtexturecanvas.txt deleted file mode 100644 index ea2817f..0000000 --- a/doc/bu/files/setmaterialtexturecanvas.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setMaterialTextureCanvas [RCBasic Doc] -#header sub setMaterialTextureCanvas( material_id, level, canvas_id) - - diff --git a/doc/bu/files/setmaterialthickness.txt b/doc/bu/files/setmaterialthickness.txt deleted file mode 100644 index d19cb52..0000000 --- a/doc/bu/files/setmaterialthickness.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setMaterialThickness [RCBasic Doc] -#header sub setMaterialThickness( material_id, thickness) - - diff --git a/doc/bu/files/setmaterialtype.txt b/doc/bu/files/setmaterialtype.txt deleted file mode 100644 index 01b4013..0000000 --- a/doc/bu/files/setmaterialtype.txt +++ /dev/null @@ -1,35 +0,0 @@ -#title SetMaterialType [RCBasic Doc] -#header sub SetMaterialType( material_id, mat_type) - -Sets the material type - -Possible material types -#list ul -#li MATERIAL_TYPE_SOLID  -#li MATERIAL_TYPE_SOLID_2_LAYER  -#li MATERIAL_TYPE_LIGHTMAP  -#li MATERIAL_TYPE_LIGHTMAP_ADD  -#li MATERIAL_TYPE_LIGHTMAP_M2  -#li MATERIAL_TYPE_LIGHTMAP_M4  -#li MATERIAL_TYPE_LIGHTMAP_LIGHTING  -#li MATERIAL_TYPE_LIGHTMAP_LIGHTING_M2  -#li MATERIAL_TYPE_LIGHTMAP_LIGHTING_M4  -#li MATERIAL_TYPE_DETAIL_MAP  -#li MATERIAL_TYPE_SPHERE_MAP  -#li MATERIAL_TYPE_REFLECTION_2_LAYER  -#li MATERIAL_TYPE_TRANSPARENT_ADD_COLOR  -#li MATERIAL_TYPE_TRANSPARENT_ALPHA_CHANNEL  -#li MATERIAL_TYPE_TRANSPARENT_ALPHA_CHANNEL_REF  -#li MATERIAL_TYPE_TRANSPARENT_VERTEX_ALPHA  -#li MATERIAL_TYPE_TRANSPARENT_REFLECTION_2_LAYER  -#li MATERIAL_TYPE_NORMAL_MAP_SOLID  -#li MATERIAL_TYPE_NORMAL_MAP_TRANSPARENT_ADD_COLOR  -#li MATERIAL_TYPE_NORMAL_MAP_TRANSPARENT_VERTEX_ALPHA  -#li MATERIAL_TYPE_PARALLAX_MAP_SOLID  -#li MATERIAL_TYPE_PARALLAX_MAP_TRANSPARENT_ADD_COLOR  -#li MATERIAL_TYPE_PARALLAX_MAP_TRANSPARENT_VERTEX_ALPHA  -#li MATERIAL_TYPE_ONETEXTURE_BLEND  -#li MATERIAL_TYPE_FORCE_32BIT  -#/list - -#ref GetMaterialType diff --git a/doc/bu/files/setmaterialwireframe.txt b/doc/bu/files/setmaterialwireframe.txt deleted file mode 100644 index e2bf12c..0000000 --- a/doc/bu/files/setmaterialwireframe.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setMaterialWireframe [RCBasic Doc] -#header sub setMaterialWireframe( material_id, flag) - - diff --git a/doc/bu/files/setmatrixrotation.txt b/doc/bu/files/setmatrixrotation.txt deleted file mode 100644 index 907d48a..0000000 --- a/doc/bu/files/setmatrixrotation.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SetMatrixRotation [RCBasic Doc] -#header sub SetMatrixRotation( mA, x, y, z ) - - diff --git a/doc/bu/files/setmatrixscale.txt b/doc/bu/files/setmatrixscale.txt deleted file mode 100644 index e362946..0000000 --- a/doc/bu/files/setmatrixscale.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SetMatrixScale [RCBasic Doc] -#header sub SetMatrixScale( mA, x, y, z ) - - diff --git a/doc/bu/files/setmatrixtranslation.txt b/doc/bu/files/setmatrixtranslation.txt deleted file mode 100644 index 55c1e8f..0000000 --- a/doc/bu/files/setmatrixtranslation.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SetMatrixTranslation [RCBasic Doc] -#header sub SetMatrixTranslation( mA, x, y, z ) - - diff --git a/doc/bu/files/setmatrixvalue.txt b/doc/bu/files/setmatrixvalue.txt deleted file mode 100644 index 12bb912..0000000 --- a/doc/bu/files/setmatrixvalue.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SetMatrixValue [RCBasic Doc] -#header sub SetMatrixValue(mA, r, c, v) - - diff --git a/doc/bu/files/setmouserelative.txt b/doc/bu/files/setmouserelative.txt deleted file mode 100644 index 5b62174..0000000 --- a/doc/bu/files/setmouserelative.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SetMouseRelative [RCBasic Doc] -#header sub SetMouseRelative(flag) - - diff --git a/doc/bu/files/setmousezone.txt b/doc/bu/files/setmousezone.txt deleted file mode 100644 index a1c3b94..0000000 --- a/doc/bu/files/setmousezone.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SetMouseZone [RCBasic Doc] -#header sub SetMouseZone(x, y, w, h) - - diff --git a/doc/bu/files/setmusicposition.txt b/doc/bu/files/setmusicposition.txt deleted file mode 100644 index 7421763..0000000 --- a/doc/bu/files/setmusicposition.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SetMusicPosition [RCBasic Doc] -#header sub SetMusicPosition(pos) - - diff --git a/doc/bu/files/setmusicvolume.txt b/doc/bu/files/setmusicvolume.txt deleted file mode 100644 index 65258be..0000000 --- a/doc/bu/files/setmusicvolume.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SetMusicVolume [RCBasic Doc] -#header sub SetMusicVolume(vol) - - diff --git a/doc/bu/files/setparticlebox.txt b/doc/bu/files/setparticlebox.txt deleted file mode 100644 index 80280b5..0000000 --- a/doc/bu/files/setparticlebox.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setParticleBox [RCBasic Doc] -#header sub setParticleBox( actor, min_x, min_y, min_z, max_x, max_y, max_z) - - diff --git a/doc/bu/files/setparticlecenter.txt b/doc/bu/files/setparticlecenter.txt deleted file mode 100644 index c7b9b99..0000000 --- a/doc/bu/files/setparticlecenter.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setParticleCenter [RCBasic Doc] -#header sub setParticleCenter( actor, x, y, z) - - diff --git a/doc/bu/files/setparticledirection.txt b/doc/bu/files/setparticledirection.txt deleted file mode 100644 index 065a803..0000000 --- a/doc/bu/files/setparticledirection.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setParticleDirection [RCBasic Doc] -#header sub setParticleDirection( actor, x, y, z) - - diff --git a/doc/bu/files/setparticlelength.txt b/doc/bu/files/setparticlelength.txt deleted file mode 100644 index f603a87..0000000 --- a/doc/bu/files/setparticlelength.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setParticleLength [RCBasic Doc] -#header sub setParticleLength( actor, p_len) - - diff --git a/doc/bu/files/setparticlemaxangle.txt b/doc/bu/files/setparticlemaxangle.txt deleted file mode 100644 index f84c0fc..0000000 --- a/doc/bu/files/setparticlemaxangle.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setParticleMaxAngle [RCBasic Doc] -#header sub setParticleMaxAngle( actor, maxAngle) - - diff --git a/doc/bu/files/setparticlemaxlife.txt b/doc/bu/files/setparticlemaxlife.txt deleted file mode 100644 index a448aa7..0000000 --- a/doc/bu/files/setparticlemaxlife.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setParticleMaxLife [RCBasic Doc] -#header sub setParticleMaxLife( actor, maxLife) - - diff --git a/doc/bu/files/setparticlemaxparticlespersecond.txt b/doc/bu/files/setparticlemaxparticlespersecond.txt deleted file mode 100644 index 69a3e4c..0000000 --- a/doc/bu/files/setparticlemaxparticlespersecond.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setParticleMaxParticlesPerSecond [RCBasic Doc] -#header sub setParticleMaxParticlesPerSecond( actor, maxParticlesPerSecond) - - diff --git a/doc/bu/files/setparticlemaxstartcolor.txt b/doc/bu/files/setparticlemaxstartcolor.txt deleted file mode 100644 index 387b1a5..0000000 --- a/doc/bu/files/setparticlemaxstartcolor.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setParticleMaxStartColor [RCBasic Doc] -#header sub setParticleMaxStartColor( actor, color) - - diff --git a/doc/bu/files/setparticlemaxstartsize.txt b/doc/bu/files/setparticlemaxstartsize.txt deleted file mode 100644 index 0fbc608..0000000 --- a/doc/bu/files/setparticlemaxstartsize.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setParticleMaxStartSize [RCBasic Doc] -#header sub setParticleMaxStartSize( actor, w, h) - - diff --git a/doc/bu/files/setparticlemesh.txt b/doc/bu/files/setparticlemesh.txt deleted file mode 100644 index e82f524..0000000 --- a/doc/bu/files/setparticlemesh.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setParticleMesh [RCBasic Doc] -#header sub setParticleMesh( actor, mesh) - - diff --git a/doc/bu/files/setparticleminlife.txt b/doc/bu/files/setparticleminlife.txt deleted file mode 100644 index 446e5af..0000000 --- a/doc/bu/files/setparticleminlife.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setParticleMinLife [RCBasic Doc] -#header sub setParticleMinLife( actor, minLife) - - diff --git a/doc/bu/files/setparticleminparticlespersecond.txt b/doc/bu/files/setparticleminparticlespersecond.txt deleted file mode 100644 index 00d9e3c..0000000 --- a/doc/bu/files/setparticleminparticlespersecond.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setParticleMinParticlesPerSecond [RCBasic Doc] -#header sub setParticleMinParticlesPerSecond( actor, minParticlesPerSecond) - - diff --git a/doc/bu/files/setparticleminstartcolor.txt b/doc/bu/files/setparticleminstartcolor.txt deleted file mode 100644 index c6d9d8d..0000000 --- a/doc/bu/files/setparticleminstartcolor.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setParticleMinStartColor [RCBasic Doc] -#header sub setParticleMinStartColor( actor, color) - - diff --git a/doc/bu/files/setparticleminstartsize.txt b/doc/bu/files/setparticleminstartsize.txt deleted file mode 100644 index 10491eb..0000000 --- a/doc/bu/files/setparticleminstartsize.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setParticleMinStartSize [RCBasic Doc] -#header sub setParticleMinStartSize( actor, w, h) - - diff --git a/doc/bu/files/setparticlenormal.txt b/doc/bu/files/setparticlenormal.txt deleted file mode 100644 index 1d7a7d6..0000000 --- a/doc/bu/files/setparticlenormal.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setParticleNormal [RCBasic Doc] -#header sub setParticleNormal( actor, x, y, z) - - diff --git a/doc/bu/files/setparticlenormaldirectionmod.txt b/doc/bu/files/setparticlenormaldirectionmod.txt deleted file mode 100644 index c5bd775..0000000 --- a/doc/bu/files/setparticlenormaldirectionmod.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setParticleNormalDirectionMod [RCBasic Doc] -#header sub setParticleNormalDirectionMod( actor, nd_mod) - - diff --git a/doc/bu/files/setparticleradius.txt b/doc/bu/files/setparticleradius.txt deleted file mode 100644 index 5c72d42..0000000 --- a/doc/bu/files/setparticleradius.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setParticleRadius [RCBasic Doc] -#header sub setParticleRadius( actor, radius) - - diff --git a/doc/bu/files/setparticleringthickness.txt b/doc/bu/files/setparticleringthickness.txt deleted file mode 100644 index 2a675d5..0000000 --- a/doc/bu/files/setparticleringthickness.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setParticleRingThickness [RCBasic Doc] -#header sub setParticleRingThickness( actor, ringThickness) - - diff --git a/doc/bu/files/setsoundchannels.txt b/doc/bu/files/setsoundchannels.txt deleted file mode 100644 index 47ed129..0000000 --- a/doc/bu/files/setsoundchannels.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SetSoundChannels [RCBasic Doc] -#header sub SetSoundChannels(max_channels) - - diff --git a/doc/bu/files/setsoundvolume.txt b/doc/bu/files/setsoundvolume.txt deleted file mode 100644 index 67afee4..0000000 --- a/doc/bu/files/setsoundvolume.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SetSoundVolume [RCBasic Doc] -#header sub SetSoundVolume(slot, vol) - - diff --git a/doc/bu/files/setspriteposition.txt b/doc/bu/files/setspriteposition.txt deleted file mode 100644 index 531db66..0000000 --- a/doc/bu/files/setspriteposition.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SetSpritePosition [RCBasic Doc] -#header Sub SetSpritePosition( sprite, x, y ) - - diff --git a/doc/bu/files/setterraincameramovementdelta.txt b/doc/bu/files/setterraincameramovementdelta.txt deleted file mode 100644 index 3a0d362..0000000 --- a/doc/bu/files/setterraincameramovementdelta.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SetTerrainCameraMovementDelta [RCBasic Doc] -#header sub SetTerrainCameraMovementDelta( actor, delta ) - - diff --git a/doc/bu/files/setterraincamerarotationdelta.txt b/doc/bu/files/setterraincamerarotationdelta.txt deleted file mode 100644 index 425b0f3..0000000 --- a/doc/bu/files/setterraincamerarotationdelta.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SetTerrainCameraRotationDelta [RCBasic Doc] -#header sub SetTerrainCameraRotationDelta( actor, delta ) - - diff --git a/doc/bu/files/setterrainloddistance.txt b/doc/bu/files/setterrainloddistance.txt deleted file mode 100644 index f9b6f0d..0000000 --- a/doc/bu/files/setterrainloddistance.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SetTerrainLODDistance [RCBasic Doc] -#header sub SetTerrainLODDistance( actor, LOD, distance ) - - diff --git a/doc/bu/files/setterrainpatchlod.txt b/doc/bu/files/setterrainpatchlod.txt deleted file mode 100644 index 34d7d8d..0000000 --- a/doc/bu/files/setterrainpatchlod.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SetTerrainPatchLOD [RCBasic Doc] -#header sub SetTerrainPatchLOD( actor, patchX, patchZ, LOD ) - - diff --git a/doc/bu/files/setvideodrawrect.txt b/doc/bu/files/setvideodrawrect.txt deleted file mode 100644 index b65212c..0000000 --- a/doc/bu/files/setvideodrawrect.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SetVideoDrawRect [RCBasic Doc] -#header sub SetVideoDrawRect(x, y, w, h) - - diff --git a/doc/bu/files/setvideoposition.txt b/doc/bu/files/setvideoposition.txt deleted file mode 100644 index 590eca2..0000000 --- a/doc/bu/files/setvideoposition.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SetVideoPosition [RCBasic Doc] -#header sub SetVideoPosition(pos) - - diff --git a/doc/bu/files/setvideovolume.txt b/doc/bu/files/setvideovolume.txt deleted file mode 100644 index 371c675..0000000 --- a/doc/bu/files/setvideovolume.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SetVideoVolume [RCBasic Doc] -#header sub SetVideoVolume( vol ) - - diff --git a/doc/bu/files/setwatercolor.txt b/doc/bu/files/setwatercolor.txt deleted file mode 100644 index 77c2e57..0000000 --- a/doc/bu/files/setwatercolor.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setWaterColor [RCBasic Doc] -#header sub setWaterColor( actor, c) - - diff --git a/doc/bu/files/setwatercolorblendfactor.txt b/doc/bu/files/setwatercolorblendfactor.txt deleted file mode 100644 index f2c07a6..0000000 --- a/doc/bu/files/setwatercolorblendfactor.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setWaterColorBlendFactor [RCBasic Doc] -#header sub setWaterColorBlendFactor( actor, cbfactor) - - diff --git a/doc/bu/files/setwaterwaveheight.txt b/doc/bu/files/setwaterwaveheight.txt deleted file mode 100644 index 631b22d..0000000 --- a/doc/bu/files/setwaterwaveheight.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setWaterWaveHeight [RCBasic Doc] -#header sub setWaterWaveHeight( actor, h) - - diff --git a/doc/bu/files/setwaterwinddirection.txt b/doc/bu/files/setwaterwinddirection.txt deleted file mode 100644 index bda16fe..0000000 --- a/doc/bu/files/setwaterwinddirection.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setWaterWindDirection [RCBasic Doc] -#header sub setWaterWindDirection( actor, x, z) - - diff --git a/doc/bu/files/setwaterwindforce.txt b/doc/bu/files/setwaterwindforce.txt deleted file mode 100644 index fd95393..0000000 --- a/doc/bu/files/setwaterwindforce.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title setWaterWindForce [RCBasic Doc] -#header sub setWaterWindForce( actor, f) - - diff --git a/doc/bu/files/setwindowalwaysontop.txt b/doc/bu/files/setwindowalwaysontop.txt deleted file mode 100644 index 9b517ca..0000000 --- a/doc/bu/files/setwindowalwaysontop.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SetWindowAlwaysOnTop [RCBasic Doc] -#header sub SetWindowAlwaysOnTop( flag ) - - diff --git a/doc/bu/files/setwindowautoclose.txt b/doc/bu/files/setwindowautoclose.txt deleted file mode 100644 index 37a8e5a..0000000 --- a/doc/bu/files/setwindowautoclose.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SetWindowAutoClose [RCBasic Doc] -#header sub SetWindowAutoClose( exit_on_close ) - - diff --git a/doc/bu/files/setwindowbordered.txt b/doc/bu/files/setwindowbordered.txt deleted file mode 100644 index b3dbd72..0000000 --- a/doc/bu/files/setwindowbordered.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SetWindowBordered [RCBasic Doc] -#header sub SetWindowBordered( flag) - - diff --git a/doc/bu/files/setwindowfullscreen.txt b/doc/bu/files/setwindowfullscreen.txt deleted file mode 100644 index bbd3dab..0000000 --- a/doc/bu/files/setwindowfullscreen.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SetWindowFullscreen [RCBasic Doc] -#header sub SetWindowFullscreen( flag) - - diff --git a/doc/bu/files/setwindowicon.txt b/doc/bu/files/setwindowicon.txt deleted file mode 100644 index a4fc7a8..0000000 --- a/doc/bu/files/setwindowicon.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SetWindowIcon [RCBasic Doc] -#header sub SetWindowIcon( slot) - - diff --git a/doc/bu/files/setwindowmaxsize.txt b/doc/bu/files/setwindowmaxsize.txt deleted file mode 100644 index 73e06b8..0000000 --- a/doc/bu/files/setwindowmaxsize.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SetWindowMaxSize [RCBasic Doc] -#header sub SetWindowMaxSize( w, h) - - diff --git a/doc/bu/files/setwindowminsize.txt b/doc/bu/files/setwindowminsize.txt deleted file mode 100644 index 5c8c99d..0000000 --- a/doc/bu/files/setwindowminsize.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SetWindowMinSize [RCBasic Doc] -#header sub SetWindowMinSize( w, h) - - diff --git a/doc/bu/files/setwindowposition.txt b/doc/bu/files/setwindowposition.txt deleted file mode 100644 index f5499c1..0000000 --- a/doc/bu/files/setwindowposition.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SetWindowPosition [RCBasic Doc] -#header sub SetWindowPosition( x, y ) - - diff --git a/doc/bu/files/setwindowresizable.txt b/doc/bu/files/setwindowresizable.txt deleted file mode 100644 index 9cfd406..0000000 --- a/doc/bu/files/setwindowresizable.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SetWindowResizable [RCBasic Doc] -#header sub SetWindowResizable( flag ) - - diff --git a/doc/bu/files/setwindowsize.txt b/doc/bu/files/setwindowsize.txt deleted file mode 100644 index 1ee95af..0000000 --- a/doc/bu/files/setwindowsize.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SetWindowSize [RCBasic Doc] -#header sub SetWindowSize( w, h ) - - diff --git a/doc/bu/files/setwindowtitle.txt b/doc/bu/files/setwindowtitle.txt deleted file mode 100644 index 2850855..0000000 --- a/doc/bu/files/setwindowtitle.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SetWindowTitle [RCBasic Doc] -#header sub SetWindowTitle( title$ ) - - diff --git a/doc/bu/files/setwindowvsync.txt b/doc/bu/files/setwindowvsync.txt deleted file mode 100644 index 92ed922..0000000 --- a/doc/bu/files/setwindowvsync.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SetWindowVSync [RCBasic Doc] -#header sub SetWindowVSync( flag ) - - diff --git a/doc/bu/files/setworld3ddeltatime.txt b/doc/bu/files/setworld3ddeltatime.txt deleted file mode 100644 index ef089fb..0000000 --- a/doc/bu/files/setworld3ddeltatime.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SetWorld3DDeltaTime [RCBasic Doc] -#header sub SetWorld3DDeltaTime( dt ) - - diff --git a/doc/bu/files/setworld3dmaxsubsteps.txt b/doc/bu/files/setworld3dmaxsubsteps.txt deleted file mode 100644 index 4b0cbd2..0000000 --- a/doc/bu/files/setworld3dmaxsubsteps.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SetWorld3DMaxSubSteps [RCBasic Doc] -#header sub SetWorld3DMaxSubSteps( steps ) - - diff --git a/doc/bu/files/setworld3dtimestep.txt b/doc/bu/files/setworld3dtimestep.txt deleted file mode 100644 index 48d18f5..0000000 --- a/doc/bu/files/setworld3dtimestep.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SetWorld3DTimeStep [RCBasic Doc] -#header sub SetWorld3DTimeStep( ts ) - - diff --git a/doc/bu/files/showmouse.txt b/doc/bu/files/showmouse.txt deleted file mode 100644 index cd973b7..0000000 --- a/doc/bu/files/showmouse.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title ShowMouse [RCBasic Doc] -#header sub ShowMouse() - - diff --git a/doc/bu/files/showwindow.txt b/doc/bu/files/showwindow.txt deleted file mode 100644 index b3e9e05..0000000 --- a/doc/bu/files/showwindow.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title ShowWindow [RCBasic Doc] -#header sub ShowWindow( ) - - diff --git a/doc/bu/files/sign.txt b/doc/bu/files/sign.txt deleted file mode 100644 index 1f955a0..0000000 --- a/doc/bu/files/sign.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title Sign [RCBasic Doc] -#header function Sign(n) - - diff --git a/doc/bu/files/sin.txt b/doc/bu/files/sin.txt deleted file mode 100644 index 0957f8a..0000000 --- a/doc/bu/files/sin.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title Sin [RCBasic Doc] -#header function Sin(n) - - diff --git a/doc/bu/files/size.txt b/doc/bu/files/size.txt deleted file mode 100644 index cbf8089..0000000 --- a/doc/bu/files/size.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title Size [RCBasic Doc] -#header function Size(s$) - - diff --git a/doc/bu/files/solvematrix.txt b/doc/bu/files/solvematrix.txt deleted file mode 100644 index 633ba20..0000000 --- a/doc/bu/files/solvematrix.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SolveMatrix [RCBasic Doc] -#header function SolveMatrix(mA, mB, mC) - - diff --git a/doc/bu/files/soundexists.txt b/doc/bu/files/soundexists.txt deleted file mode 100644 index 0a4e2e6..0000000 --- a/doc/bu/files/soundexists.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SoundExists [RCBasic Doc] -#header function SoundExists(slot) - - diff --git a/doc/bu/files/soundisenabled.txt b/doc/bu/files/soundisenabled.txt deleted file mode 100644 index c5f80c2..0000000 --- a/doc/bu/files/soundisenabled.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SoundIsEnabled [RCBasic Doc] -#header function SoundIsEnabled() - - diff --git a/doc/bu/files/sqrt.txt b/doc/bu/files/sqrt.txt deleted file mode 100644 index 66cf612..0000000 --- a/doc/bu/files/sqrt.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title Sqrt [RCBasic Doc] -#header function Sqrt(n) - - diff --git a/doc/bu/files/squarematrix.txt b/doc/bu/files/squarematrix.txt deleted file mode 100644 index 25527e0..0000000 --- a/doc/bu/files/squarematrix.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SquareMatrix [RCBasic Doc] -#header function SquareMatrix(mA, mB) - - diff --git a/doc/bu/files/stack_size_n.txt b/doc/bu/files/stack_size_n.txt deleted file mode 100644 index 80f3c93..0000000 --- a/doc/bu/files/stack_size_n.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title Stack_Size_N [RCBasic Doc] -#header function Stack_Size_N( num_stack ) - - diff --git a/doc/bu/files/stack_size_s.txt b/doc/bu/files/stack_size_s.txt deleted file mode 100644 index 24ba602..0000000 --- a/doc/bu/files/stack_size_s.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title Stack_Size_S [RCBasic Doc] -#header function Stack_Size_S( str_stack ) - - diff --git a/doc/bu/files/startactortransition.txt b/doc/bu/files/startactortransition.txt deleted file mode 100644 index ee31765..0000000 --- a/doc/bu/files/startactortransition.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title StartActorTransition [RCBasic Doc] -#header sub StartActorTransition( actor, frame, transition_time ) - - diff --git a/doc/bu/files/startparticleemitter.txt b/doc/bu/files/startparticleemitter.txt deleted file mode 100644 index 4eb7fe0..0000000 --- a/doc/bu/files/startparticleemitter.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title startParticleEmitter [RCBasic Doc] -#header sub startParticleEmitter( actor) - - diff --git a/doc/bu/files/stopactortransition.txt b/doc/bu/files/stopactortransition.txt deleted file mode 100644 index 9087ebc..0000000 --- a/doc/bu/files/stopactortransition.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title StopActorTransition [RCBasic Doc] -#header sub StopActorTransition( actor ) - - diff --git a/doc/bu/files/stopmusic.txt b/doc/bu/files/stopmusic.txt deleted file mode 100644 index 198c755..0000000 --- a/doc/bu/files/stopmusic.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title StopMusic [RCBasic Doc] -#header sub StopMusic() - - diff --git a/doc/bu/files/stopparticleemitter.txt b/doc/bu/files/stopparticleemitter.txt deleted file mode 100644 index e9524ab..0000000 --- a/doc/bu/files/stopparticleemitter.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title stopParticleEmitter [RCBasic Doc] -#header sub stopParticleEmitter( actor) - - diff --git a/doc/bu/files/stopsound.txt b/doc/bu/files/stopsound.txt deleted file mode 100644 index 5273764..0000000 --- a/doc/bu/files/stopsound.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title StopSound [RCBasic Doc] -#header sub StopSound(channel) - - diff --git a/doc/bu/files/stopvideo.txt b/doc/bu/files/stopvideo.txt deleted file mode 100644 index eb51f98..0000000 --- a/doc/bu/files/stopvideo.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title StopVideo [RCBasic Doc] -#header sub StopVideo() - - diff --git a/doc/bu/files/str.txt b/doc/bu/files/str.txt deleted file mode 100644 index 84acfb0..0000000 --- a/doc/bu/files/str.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title Str$ [RCBasic Doc] -#header function Str$(n) - - diff --git a/doc/bu/files/str_f.txt b/doc/bu/files/str_f.txt deleted file mode 100644 index 89e8cfc..0000000 --- a/doc/bu/files/str_f.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title Str_F$ [RCBasic Doc] -#header function Str_F$(n) - - diff --git a/doc/bu/files/str_s.txt b/doc/bu/files/str_s.txt deleted file mode 100644 index 7ae7b55..0000000 --- a/doc/bu/files/str_s.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title Str_S$ [RCBasic Doc] -#header function Str_S$(n) - - diff --git a/doc/bu/files/stringarraycopy.txt b/doc/bu/files/stringarraycopy.txt deleted file mode 100644 index c2ae827..0000000 --- a/doc/bu/files/stringarraycopy.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title StringArrayCopy [RCBasic Doc] -#header sub StringArrayCopy(ByRef src$, ByRef dst$) - - diff --git a/doc/bu/files/stringarraydim.txt b/doc/bu/files/stringarraydim.txt deleted file mode 100644 index b0e621e..0000000 --- a/doc/bu/files/stringarraydim.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title StringArrayDim [RCBasic Doc] -#header function StringArrayDim(Byref id$) - - diff --git a/doc/bu/files/stringarrayfill.txt b/doc/bu/files/stringarrayfill.txt deleted file mode 100644 index 4302ea4..0000000 --- a/doc/bu/files/stringarrayfill.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title StringArrayFill [RCBasic Doc] -#header sub StringArrayFill(ByRef src$, fdata$) - - diff --git a/doc/bu/files/stringarraysize.txt b/doc/bu/files/stringarraysize.txt deleted file mode 100644 index 6f277c3..0000000 --- a/doc/bu/files/stringarraysize.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title StringArraySize [RCBasic Doc] -#header function StringArraySize(Byref id$, array_dim) - - diff --git a/doc/bu/files/stringfill.txt b/doc/bu/files/stringfill.txt deleted file mode 100644 index a171ec6..0000000 --- a/doc/bu/files/stringfill.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title StringFill$ [RCBasic Doc] -#header function StringFill$(src$, n) - - diff --git a/doc/bu/files/stringfrombuffer.txt b/doc/bu/files/stringfrombuffer.txt deleted file mode 100644 index 64f13d8..0000000 --- a/doc/bu/files/stringfrombuffer.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title StringFromBuffer$ [RCBasic Doc] -#header function StringFromBuffer$(ByRef buffer, buffer_size) - - diff --git a/doc/bu/files/subtractmatrix.txt b/doc/bu/files/subtractmatrix.txt deleted file mode 100644 index c614614..0000000 --- a/doc/bu/files/subtractmatrix.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SubtractMatrix [RCBasic Doc] -#header function SubtractMatrix(mA, mB, mC) - - diff --git a/doc/bu/files/swapmatrix.txt b/doc/bu/files/swapmatrix.txt deleted file mode 100644 index a73d28b..0000000 --- a/doc/bu/files/swapmatrix.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SwapMatrix [RCBasic Doc] -#header sub SwapMatrix(mA, mB) - - diff --git a/doc/bu/files/swapmatrixcolumn.txt b/doc/bu/files/swapmatrixcolumn.txt deleted file mode 100644 index 5728a5b..0000000 --- a/doc/bu/files/swapmatrixcolumn.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SwapMatrixColumn [RCBasic Doc] -#header function SwapMatrixColumn(mA, C1, C2) - - diff --git a/doc/bu/files/swapmatrixrow.txt b/doc/bu/files/swapmatrixrow.txt deleted file mode 100644 index 5b907a5..0000000 --- a/doc/bu/files/swapmatrixrow.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SwapMatrixRow [RCBasic Doc] -#header function SwapMatrixRow(mA, R1, R2) - - diff --git a/doc/bu/files/system.txt b/doc/bu/files/system.txt deleted file mode 100644 index 9c8f9c7..0000000 --- a/doc/bu/files/system.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title System [RCBasic Doc] -#header function System(cmd$) - - diff --git a/doc/bu/files/systemram.txt b/doc/bu/files/systemram.txt deleted file mode 100644 index 2262af5..0000000 --- a/doc/bu/files/systemram.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SystemRam [RCBasic Doc] -#header function SystemRam() - - diff --git a/doc/bu/files/systemreturnstdout.txt b/doc/bu/files/systemreturnstdout.txt deleted file mode 100644 index 44d12c0..0000000 --- a/doc/bu/files/systemreturnstdout.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title SystemReturnStdOut$ [RCBasic Doc] -#header function SystemReturnStdOut$(cmd$) - - diff --git a/doc/bu/files/tally.txt b/doc/bu/files/tally.txt deleted file mode 100644 index a73ac20..0000000 --- a/doc/bu/files/tally.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title Tally [RCBasic Doc] -#header function Tally(src$, substr$) - - diff --git a/doc/bu/files/tan.txt b/doc/bu/files/tan.txt deleted file mode 100644 index fcd4fff..0000000 --- a/doc/bu/files/tan.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title Tan [RCBasic Doc] -#header function Tan(n) - - diff --git a/doc/bu/files/tcp_acceptsocket.txt b/doc/bu/files/tcp_acceptsocket.txt deleted file mode 100644 index eaf6298..0000000 --- a/doc/bu/files/tcp_acceptsocket.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title TCP_AcceptSocket [RCBasic Doc] -#header function TCP_AcceptSocket(server, client) - - diff --git a/doc/bu/files/tcp_closesocket.txt b/doc/bu/files/tcp_closesocket.txt deleted file mode 100644 index 4af1841..0000000 --- a/doc/bu/files/tcp_closesocket.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title TCP_CloseSocket [RCBasic Doc] -#header sub TCP_CloseSocket(socket) - - diff --git a/doc/bu/files/tcp_getdata.txt b/doc/bu/files/tcp_getdata.txt deleted file mode 100644 index 6c62b32..0000000 --- a/doc/bu/files/tcp_getdata.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title TCP_GetData [RCBasic Doc] -#header function TCP_GetData(socket, numBytes, ByRef sData$) - - diff --git a/doc/bu/files/tcp_opensocket.txt b/doc/bu/files/tcp_opensocket.txt deleted file mode 100644 index 3c3d8d7..0000000 --- a/doc/bu/files/tcp_opensocket.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title TCP_OpenSocket [RCBasic Doc] -#header function TCP_OpenSocket(host$, port) - - diff --git a/doc/bu/files/tcp_remotehost.txt b/doc/bu/files/tcp_remotehost.txt deleted file mode 100644 index b6b0982..0000000 --- a/doc/bu/files/tcp_remotehost.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title TCP_RemoteHost [RCBasic Doc] -#header function TCP_RemoteHost(socket) - - diff --git a/doc/bu/files/tcp_remoteport.txt b/doc/bu/files/tcp_remoteport.txt deleted file mode 100644 index dc694db..0000000 --- a/doc/bu/files/tcp_remoteport.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title TCP_RemotePort [RCBasic Doc] -#header function TCP_RemotePort(socket) - - diff --git a/doc/bu/files/tcp_senddata.txt b/doc/bu/files/tcp_senddata.txt deleted file mode 100644 index b579a59..0000000 --- a/doc/bu/files/tcp_senddata.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title TCP_SendData [RCBasic Doc] -#header sub TCP_SendData(socket, sData$) - - diff --git a/doc/bu/files/tcp_socketready.txt b/doc/bu/files/tcp_socketready.txt deleted file mode 100644 index 701ea26..0000000 --- a/doc/bu/files/tcp_socketready.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title TCP_SocketReady [RCBasic Doc] -#header function TCP_SocketReady(socket) - - diff --git a/doc/bu/files/tell.txt b/doc/bu/files/tell.txt deleted file mode 100644 index 2e8ef31..0000000 --- a/doc/bu/files/tell.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title Tell [RCBasic Doc] -#header function Tell(stream) - - diff --git a/doc/bu/files/ticks.txt b/doc/bu/files/ticks.txt deleted file mode 100644 index 9626703..0000000 --- a/doc/bu/files/ticks.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title Ticks [RCBasic Doc] -#header function Ticks() - - diff --git a/doc/bu/files/time.txt b/doc/bu/files/time.txt deleted file mode 100644 index cef1bb2..0000000 --- a/doc/bu/files/time.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title Time$ [RCBasic Doc] -#header function Time$() - - diff --git a/doc/bu/files/timer.txt b/doc/bu/files/timer.txt deleted file mode 100644 index 308a725..0000000 --- a/doc/bu/files/timer.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title Timer [RCBasic Doc] -#header function Timer() - - diff --git a/doc/bu/files/touchpressure.txt b/doc/bu/files/touchpressure.txt deleted file mode 100644 index 84902d0..0000000 --- a/doc/bu/files/touchpressure.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title TouchPressure [RCBasic Doc] -#header function TouchPressure() - - diff --git a/doc/bu/files/translateactor.txt b/doc/bu/files/translateactor.txt deleted file mode 100644 index 5d8b8e9..0000000 --- a/doc/bu/files/translateactor.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title TranslateActor [RCBasic Doc] -#header sub TranslateActor( actor, x, y, z ) - - diff --git a/doc/bu/files/translateactorworld.txt b/doc/bu/files/translateactorworld.txt deleted file mode 100644 index 553e614..0000000 --- a/doc/bu/files/translateactorworld.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title TranslateActorWorld [RCBasic Doc] -#header sub TranslateActorWorld( actor, x, y, z ) - - diff --git a/doc/bu/files/translatecamera.txt b/doc/bu/files/translatecamera.txt deleted file mode 100644 index bbf915a..0000000 --- a/doc/bu/files/translatecamera.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title TranslateCamera [RCBasic Doc] -#header sub TranslateCamera( x, y, z) - - diff --git a/doc/bu/files/transposematrix.txt b/doc/bu/files/transposematrix.txt deleted file mode 100644 index aa8a1c9..0000000 --- a/doc/bu/files/transposematrix.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title TransposeMatrix [RCBasic Doc] -#header function TransposeMatrix(mA, mB) - - diff --git a/doc/bu/files/trim.txt b/doc/bu/files/trim.txt deleted file mode 100644 index d93c949..0000000 --- a/doc/bu/files/trim.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title Trim$ [RCBasic Doc] -#header function Trim$(src$) - - diff --git a/doc/bu/files/tst.txt b/doc/bu/files/tst.txt deleted file mode 100644 index d7bf91f..0000000 --- a/doc/bu/files/tst.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title tst [RCBasic Doc] -#header sub tst() - - diff --git a/doc/bu/files/typearraycopy.txt b/doc/bu/files/typearraycopy.txt deleted file mode 100644 index a90f979..0000000 --- a/doc/bu/files/typearraycopy.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title TypeArrayCopy [RCBasic Doc] -#header sub TypeArrayCopy(ByRef src as empty, ByRef dst as empty) - - diff --git a/doc/bu/files/typearraydim.txt b/doc/bu/files/typearraydim.txt deleted file mode 100644 index 1c5deb6..0000000 --- a/doc/bu/files/typearraydim.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title TypeArrayDim [RCBasic Doc] -#header function TypeArrayDim(Byref id as empty) - - diff --git a/doc/bu/files/typearrayfill.txt b/doc/bu/files/typearrayfill.txt deleted file mode 100644 index 55c8acc..0000000 --- a/doc/bu/files/typearrayfill.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title TypeArrayFill [RCBasic Doc] -#header sub TypeArrayFill(ByRef src as empty, fdata as empty) - - diff --git a/doc/bu/files/typearraysize.txt b/doc/bu/files/typearraysize.txt deleted file mode 100644 index f9717c0..0000000 --- a/doc/bu/files/typearraysize.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title TypeArraySize [RCBasic Doc] -#header function TypeArraySize(Byref id as empty, array_dim) - - diff --git a/doc/bu/files/ucase.txt b/doc/bu/files/ucase.txt deleted file mode 100644 index da32693..0000000 --- a/doc/bu/files/ucase.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title Ucase$ [RCBasic Doc] -#header function Ucase$(src$) - - diff --git a/doc/bu/files/udp_closesocket.txt b/doc/bu/files/udp_closesocket.txt deleted file mode 100644 index 12d731b..0000000 --- a/doc/bu/files/udp_closesocket.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title UDP_CloseSocket [RCBasic Doc] -#header sub UDP_CloseSocket(socket) - - diff --git a/doc/bu/files/udp_getdata.txt b/doc/bu/files/udp_getdata.txt deleted file mode 100644 index 7970b5e..0000000 --- a/doc/bu/files/udp_getdata.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title UDP_GetData [RCBasic Doc] -#header function UDP_GetData(socket, byref host$, byref port, byref sData$) - - diff --git a/doc/bu/files/udp_length.txt b/doc/bu/files/udp_length.txt deleted file mode 100644 index 09b3bc8..0000000 --- a/doc/bu/files/udp_length.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title UDP_Length [RCBasic Doc] -#header function UDP_Length() - - diff --git a/doc/bu/files/udp_maxlength.txt b/doc/bu/files/udp_maxlength.txt deleted file mode 100644 index 7358d01..0000000 --- a/doc/bu/files/udp_maxlength.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title UDP_MaxLength [RCBasic Doc] -#header function UDP_MaxLength() - - diff --git a/doc/bu/files/udp_opensocket.txt b/doc/bu/files/udp_opensocket.txt deleted file mode 100644 index b355133..0000000 --- a/doc/bu/files/udp_opensocket.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title UDP_OpenSocket [RCBasic Doc] -#header function UDP_OpenSocket(port) - - diff --git a/doc/bu/files/udp_remotehost.txt b/doc/bu/files/udp_remotehost.txt deleted file mode 100644 index 1a73bbe..0000000 --- a/doc/bu/files/udp_remotehost.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title UDP_RemoteHost$ [RCBasic Doc] -#header function UDP_RemoteHost$(socket) - - diff --git a/doc/bu/files/udp_remoteport.txt b/doc/bu/files/udp_remoteport.txt deleted file mode 100644 index c8e7958..0000000 --- a/doc/bu/files/udp_remoteport.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title UDP_RemotePort [RCBasic Doc] -#header function UDP_RemotePort(socket) - - diff --git a/doc/bu/files/udp_senddata.txt b/doc/bu/files/udp_senddata.txt deleted file mode 100644 index f7a39dd..0000000 --- a/doc/bu/files/udp_senddata.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title UDP_SendData [RCBasic Doc] -#header sub UDP_SendData(socket, host$, port, sData$) - - diff --git a/doc/bu/files/udp_socketready.txt b/doc/bu/files/udp_socketready.txt deleted file mode 100644 index 0f01add..0000000 --- a/doc/bu/files/udp_socketready.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title UDP_SocketReady [RCBasic Doc] -#header function UDP_SocketReady(socket) - - diff --git a/doc/bu/files/unaugmentmatrix.txt b/doc/bu/files/unaugmentmatrix.txt deleted file mode 100644 index 11b526c..0000000 --- a/doc/bu/files/unaugmentmatrix.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title UnAugmentMatrix [RCBasic Doc] -#header function UnAugmentMatrix(mA, mB, mC) - - diff --git a/doc/bu/files/update.txt b/doc/bu/files/update.txt deleted file mode 100644 index 18fea69..0000000 --- a/doc/bu/files/update.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title Update [RCBasic Doc] -#header sub Update() - - diff --git a/doc/bu/files/updateactorinertiatensor.txt b/doc/bu/files/updateactorinertiatensor.txt deleted file mode 100644 index a03f6ac..0000000 --- a/doc/bu/files/updateactorinertiatensor.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title updateActorInertiaTensor [RCBasic Doc] -#header sub updateActorInertiaTensor( actor) - - diff --git a/doc/bu/files/useconstraintframeoffset.txt b/doc/bu/files/useconstraintframeoffset.txt deleted file mode 100644 index 2c21708..0000000 --- a/doc/bu/files/useconstraintframeoffset.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title useConstraintFrameOffset [RCBasic Doc] -#header sub useConstraintFrameOffset( constraint_id, flag) - - diff --git a/doc/bu/files/usehingereferenceframea.txt b/doc/bu/files/usehingereferenceframea.txt deleted file mode 100644 index 780c39d..0000000 --- a/doc/bu/files/usehingereferenceframea.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title useHingeReferenceFrameA [RCBasic Doc] -#header sub useHingeReferenceFrameA( constraint_id, flag) - - diff --git a/doc/bu/files/useparticleeverymeshvertex.txt b/doc/bu/files/useparticleeverymeshvertex.txt deleted file mode 100644 index 4dd2bfd..0000000 --- a/doc/bu/files/useparticleeverymeshvertex.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title useParticleEveryMeshVertex [RCBasic Doc] -#header sub useParticleEveryMeshVertex( actor, flag) - - diff --git a/doc/bu/files/useparticlenormaldirection.txt b/doc/bu/files/useparticlenormaldirection.txt deleted file mode 100644 index 90f4774..0000000 --- a/doc/bu/files/useparticlenormaldirection.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title useParticleNormalDirection [RCBasic Doc] -#header sub useParticleNormalDirection( actor, flag) - - diff --git a/doc/bu/files/useparticleoutlineonly.txt b/doc/bu/files/useparticleoutlineonly.txt deleted file mode 100644 index 0348f8c..0000000 --- a/doc/bu/files/useparticleoutlineonly.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title useParticleOutlineOnly [RCBasic Doc] -#header sub useParticleOutlineOnly( actor, flag) - - diff --git a/doc/bu/files/val.txt b/doc/bu/files/val.txt deleted file mode 100644 index 2251cd0..0000000 --- a/doc/bu/files/val.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title Val [RCBasic Doc] -#header function Val(n$) - - diff --git a/doc/bu/files/videoend.txt b/doc/bu/files/videoend.txt deleted file mode 100644 index 6029416..0000000 --- a/doc/bu/files/videoend.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title VideoEnd [RCBasic Doc] -#header function VideoEnd() - - diff --git a/doc/bu/files/videoexists.txt b/doc/bu/files/videoexists.txt deleted file mode 100644 index 5b6c802..0000000 --- a/doc/bu/files/videoexists.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title VideoExists [RCBasic Doc] -#header function VideoExists() - - diff --git a/doc/bu/files/videoisplaying.txt b/doc/bu/files/videoisplaying.txt deleted file mode 100644 index 72d29e2..0000000 --- a/doc/bu/files/videoisplaying.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title VideoIsPlaying [RCBasic Doc] -#header function VideoIsPlaying() - - diff --git a/doc/bu/files/wait.txt b/doc/bu/files/wait.txt deleted file mode 100644 index 2c073f3..0000000 --- a/doc/bu/files/wait.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title Wait [RCBasic Doc] -#header sub Wait(m_sec) - - diff --git a/doc/bu/files/waitkey.txt b/doc/bu/files/waitkey.txt deleted file mode 100644 index 6282a2c..0000000 --- a/doc/bu/files/waitkey.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title WaitKey [RCBasic Doc] -#header function WaitKey() - - diff --git a/doc/bu/files/warpmouse.txt b/doc/bu/files/warpmouse.txt deleted file mode 100644 index ca6eb1c..0000000 --- a/doc/bu/files/warpmouse.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title WarpMouse [RCBasic Doc] -#header sub WarpMouse(x, y) - - diff --git a/doc/bu/files/warpmouseglobal.txt b/doc/bu/files/warpmouseglobal.txt deleted file mode 100644 index 6d36e07..0000000 --- a/doc/bu/files/warpmouseglobal.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title WarpMouseGlobal [RCBasic Doc] -#header sub WarpMouseGlobal(x, y) - - diff --git a/doc/bu/files/windowclip.txt b/doc/bu/files/windowclip.txt deleted file mode 100644 index eeebb9c..0000000 --- a/doc/bu/files/windowclip.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title WindowClip [RCBasic Doc] -#header function WindowClip(x, y, w, h) - - diff --git a/doc/bu/files/windowevent_close.txt b/doc/bu/files/windowevent_close.txt deleted file mode 100644 index a4bcc24..0000000 --- a/doc/bu/files/windowevent_close.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title WindowEvent_Close [RCBasic Doc] -#header function WindowEvent_Close() - - diff --git a/doc/bu/files/windowevent_maximize.txt b/doc/bu/files/windowevent_maximize.txt deleted file mode 100644 index 820fd09..0000000 --- a/doc/bu/files/windowevent_maximize.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title WindowEvent_Maximize [RCBasic Doc] -#header function WindowEvent_Maximize() - - diff --git a/doc/bu/files/windowevent_minimize.txt b/doc/bu/files/windowevent_minimize.txt deleted file mode 100644 index a32de19..0000000 --- a/doc/bu/files/windowevent_minimize.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title WindowEvent_Minimize [RCBasic Doc] -#header function WindowEvent_Minimize() - - diff --git a/doc/bu/files/windowevent_resize.txt b/doc/bu/files/windowevent_resize.txt deleted file mode 100644 index 9f733ed..0000000 --- a/doc/bu/files/windowevent_resize.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title WindowEvent_Resize [RCBasic Doc] -#header function WindowEvent_Resize() - - diff --git a/doc/bu/files/windowexists.txt b/doc/bu/files/windowexists.txt deleted file mode 100644 index c6ac2a5..0000000 --- a/doc/bu/files/windowexists.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title WindowExists [RCBasic Doc] -#header function WindowExists() - - diff --git a/doc/bu/files/windowhasinputfocus.txt b/doc/bu/files/windowhasinputfocus.txt deleted file mode 100644 index 4930a60..0000000 --- a/doc/bu/files/windowhasinputfocus.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title WindowHasInputFocus [RCBasic Doc] -#header function WindowHasInputFocus() - - diff --git a/doc/bu/files/windowhasmousefocus.txt b/doc/bu/files/windowhasmousefocus.txt deleted file mode 100644 index c366a23..0000000 --- a/doc/bu/files/windowhasmousefocus.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title WindowHasMouseFocus [RCBasic Doc] -#header function WindowHasMouseFocus() - - diff --git a/doc/bu/files/windowisbordered.txt b/doc/bu/files/windowisbordered.txt deleted file mode 100644 index 17cf5ad..0000000 --- a/doc/bu/files/windowisbordered.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title WindowIsBordered [RCBasic Doc] -#header function WindowIsBordered() - - diff --git a/doc/bu/files/windowisfullscreen.txt b/doc/bu/files/windowisfullscreen.txt deleted file mode 100644 index 54d4af9..0000000 --- a/doc/bu/files/windowisfullscreen.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title WindowIsFullscreen [RCBasic Doc] -#header function WindowIsFullscreen() - - diff --git a/doc/bu/files/windowisgrabbed.txt b/doc/bu/files/windowisgrabbed.txt deleted file mode 100644 index d883040..0000000 --- a/doc/bu/files/windowisgrabbed.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title WindowIsGrabbed [RCBasic Doc] -#header function WindowIsGrabbed( ) - - diff --git a/doc/bu/files/windowismaximized.txt b/doc/bu/files/windowismaximized.txt deleted file mode 100644 index 8e22594..0000000 --- a/doc/bu/files/windowismaximized.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title WindowIsMaximized [RCBasic Doc] -#header function WindowIsMaximized() - - diff --git a/doc/bu/files/windowisminimized.txt b/doc/bu/files/windowisminimized.txt deleted file mode 100644 index 38cca84..0000000 --- a/doc/bu/files/windowisminimized.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title WindowIsMinimized [RCBasic Doc] -#header function WindowIsMinimized() - - diff --git a/doc/bu/files/windowisresizable.txt b/doc/bu/files/windowisresizable.txt deleted file mode 100644 index 08b0b04..0000000 --- a/doc/bu/files/windowisresizable.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title WindowIsResizable [RCBasic Doc] -#header function WindowIsResizable() - - diff --git a/doc/bu/files/windowisvisible.txt b/doc/bu/files/windowisvisible.txt deleted file mode 100644 index 990a071..0000000 --- a/doc/bu/files/windowisvisible.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title WindowIsVisible [RCBasic Doc] -#header function WindowIsVisible() - - diff --git a/doc/bu/files/windowmode.txt b/doc/bu/files/windowmode.txt deleted file mode 100644 index 5fa5385..0000000 --- a/doc/bu/files/windowmode.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title WindowMode [RCBasic Doc] -#header function WindowMode(visible, fullscreen, resizable, borderless, highDPI) - - diff --git a/doc/bu/files/windowtitle.txt b/doc/bu/files/windowtitle.txt deleted file mode 100644 index ff00fc0..0000000 --- a/doc/bu/files/windowtitle.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title WindowTitle$ [RCBasic Doc] -#header function WindowTitle$( ) - - diff --git a/doc/bu/files/write.txt b/doc/bu/files/write.txt deleted file mode 100644 index edf82a5..0000000 --- a/doc/bu/files/write.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title Write [RCBasic Doc] -#header sub Write(stream, txt$) - - diff --git a/doc/bu/files/writebyte.txt b/doc/bu/files/writebyte.txt deleted file mode 100644 index b017160..0000000 --- a/doc/bu/files/writebyte.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title WriteByte [RCBasic Doc] -#header sub WriteByte(stream, byte) - - diff --git a/doc/bu/files/writebytebuffer.txt b/doc/bu/files/writebytebuffer.txt deleted file mode 100644 index fe3c08c..0000000 --- a/doc/bu/files/writebytebuffer.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title WriteByteBuffer [RCBasic Doc] -#header function WriteByteBuffer(stream, ByRef buf, buf_size) - - diff --git a/doc/bu/files/writeline.txt b/doc/bu/files/writeline.txt deleted file mode 100644 index df85cbd..0000000 --- a/doc/bu/files/writeline.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title WriteLine [RCBasic Doc] -#header sub WriteLine(stream, txt$) - - diff --git a/doc/bu/files/xorbit.txt b/doc/bu/files/xorbit.txt deleted file mode 100644 index 684fbda..0000000 --- a/doc/bu/files/xorbit.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title XOrBit [RCBasic Doc] -#header function XOrBit(a, b) - - diff --git a/doc/bu/files/zeromatrix.txt b/doc/bu/files/zeromatrix.txt deleted file mode 100644 index 3d81c26..0000000 --- a/doc/bu/files/zeromatrix.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title ZeroMatrix [RCBasic Doc] -#header sub ZeroMatrix(mA) - - diff --git a/doc/cw/gethingesolvelimit.txt b/doc/cw/gethingesolvelimit.txt deleted file mode 100644 index ce518db..0000000 --- a/doc/cw/gethingesolvelimit.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title getHingeSolveLimit [RCBasic Doc] -#header function getHingeSolveLimit( constraint_id) - -Checks whether the hinge has reached or exceeded its angular limit during the simulation. It returns a boolean or an integer value that indicates whether the current angular position is within the constraint's angular limits or if corrective forces need to be applied. - -The "solve limit" refers to whether the current angular position is close to or outside the defined angular limits. If the constraint detects that the hinge is at the limit, it enters a solving state, where it applies corrective forces to keep the rotation within the allowed range. diff --git a/doc/cw/getslidelindepth.txt b/doc/cw/getslidelindepth.txt deleted file mode 100644 index 7fba322..0000000 --- a/doc/cw/getslidelindepth.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title getSlideLinDepth [RCBasic Doc] -#header function getSlideLinDepth( constraint_id) - -Returns the linear depth of the slider constraint. This value indicates how much the actors connected by the slider constraint are overlapping or penetrating each other in the linear (translational) direction. - -The linear depth is a measure of how far the actors are penetrating each other along the linear axis defined by the slider constraint. A positive value indicates that the actors are overlapping, while a value of zero means they are in contact but not penetrating. Negative values typically imply that the actors are separated. diff --git a/doc/cw/getslidelinearpos.txt b/doc/cw/getslidelinearpos.txt deleted file mode 100644 index f20b0ae..0000000 --- a/doc/cw/getslidelinearpos.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title getSlideLinearPos [RCBasic Doc] -#header function getSlideLinearPos( constraint_id) - -Returns the current linear position of the slider constraint along its defined axis. This position reflects how far the connected actors have moved along the slider's linear axis since the constraint was created or last reset. - -This value can be positive or negative, depending on the relative positions of the two bodies connected by the slider. diff --git a/doc/cw/getslideloweranglimit.txt b/doc/cw/getslideloweranglimit.txt deleted file mode 100644 index 5fe004d..0000000 --- a/doc/cw/getslideloweranglimit.txt +++ /dev/null @@ -1,8 +0,0 @@ -#title getSlideLowerAngLimit [RCBasic Doc] -#header function getSlideLowerAngLimit( constraint_id) - -Returns the lower angular limit of the constraint. This value specifies the minimum angle allowed for the rotation of the connected actors around the axis perpendicular to the sliding direction defined by the slider constraint. - -The lower angular limit indicates the smallest angle that the actors can rotate about the axis perpendicular to the sliding direction. If the rotation tries to exceed this limit, the physics engine will apply corrective forces to maintain the bodies within the allowed range. - -#ref GetSlideLowerLinLimit diff --git a/doc/cw/getslidelowerlinlimit.txt b/doc/cw/getslidelowerlinlimit.txt deleted file mode 100644 index 9a6d38e..0000000 --- a/doc/cw/getslidelowerlinlimit.txt +++ /dev/null @@ -1,8 +0,0 @@ -#title getSlideLowerLinLimit [RCBasic Doc] -#header function getSlideLowerLinLimit( constraint_id) - -Returns the lower linear limit for the translational (sliding) motion along the slider's axis. This value specifies the minimum allowable position for the connected actors along the defined axis of the slider constraint. - -This defines the minimum translation distance along the slider’s axis that the connected actors are allowed to reach. If the actors' relative position along the axis goes below this limit, the constraint will prevent further movement. - -#ref SetSlideLowerLinLimit diff --git a/doc/cw/getsliderestitutiondirang.txt b/doc/cw/getsliderestitutiondirang.txt deleted file mode 100644 index c51de77..0000000 --- a/doc/cw/getsliderestitutiondirang.txt +++ /dev/null @@ -1,8 +0,0 @@ -#title getSlideRestitutionDirAng [RCBasic Doc] -#header function getSlideRestitutionDirAng( constraint_id) - -Returns the restitution value for angular motion. The restitution coefficient is a measure of how much energy is conserved in a collision or constraint interaction, specifically for angular movements. - -When actors collide or interact, their angular momentum and position can change, and the restitution value governs how much of that energy is retained after the interaction. - -#ref SetSlideRestitutionDirAng diff --git a/doc/cw/getsliderestitutiondirlin.txt b/doc/cw/getsliderestitutiondirlin.txt deleted file mode 100644 index de1e80b..0000000 --- a/doc/cw/getsliderestitutiondirlin.txt +++ /dev/null @@ -1,8 +0,0 @@ -#title getSlideRestitutionDirLin [RCBasic Doc] -#header function getSlideRestitutionDirLin( constraint_id) - -Returns the restitution value for linear motion. This value determines how much energy is conserved in a collision or interaction involving linear movements of the connected actors. - -When the actors collide or interact, the restitution value dictates how much of their energy is retained after the interaction. - -#ref SetSlideRestitutionDirLin diff --git a/doc/cw/getsliderestitutionlimang.txt b/doc/cw/getsliderestitutionlimang.txt deleted file mode 100644 index 6c3e28a..0000000 --- a/doc/cw/getsliderestitutionlimang.txt +++ /dev/null @@ -1,8 +0,0 @@ -#title getSlideRestitutionLimAng [RCBasic Doc] -#header function getSlideRestitutionLimAng( constraint_id) - -Returns the restitution value for angular limit. This value determines how much energy is conserved when the angular motion of the connected actors reaches the angular limits of the slider constraint. Essentially, it controls how "bouncy" the rotation is when it hits the angular limit of the constraint. - -A value of 0.0 means no bounce (perfectly inelastic), while a value of 1.0 allows maximum bounce (perfectly elastic). - -#ref SetSlideRestitutionLimAng diff --git a/doc/cw/getsliderestitutionlimlin.txt b/doc/cw/getsliderestitutionlimlin.txt deleted file mode 100644 index 71bedcc..0000000 --- a/doc/cw/getsliderestitutionlimlin.txt +++ /dev/null @@ -1,8 +0,0 @@ -#title getSlideRestitutionLimLin [RCBasic Doc] -#header function getSlideRestitutionLimLin( constraint_id) - -Returns the restitution value for the linear limit of the constraint. This value controls how much energy is conserved (or how "bouncy" the interaction is) when the connected actors reach the linear limits of the slider constraint, which restricts the movement along the sliding axis. - -Restitution is a measure of how much energy is retained after a collision or interaction. In this context, when the linear movement reaches the limits, restitution controls how much the actors "bounce" back. A restitution value of 0.0 means no bounce (the collision is perfectly inelastic), and 1.0 allows maximum bounce (the collision is perfectly elastic). - -#ref SetSlideRestitutionLimLin diff --git a/doc/cw/getsliderestitutionorthoang.txt b/doc/cw/getsliderestitutionorthoang.txt deleted file mode 100644 index f10828c..0000000 --- a/doc/cw/getsliderestitutionorthoang.txt +++ /dev/null @@ -1,10 +0,0 @@ -#title getSlideRestitutionOrthoAng [RCBasic Doc] -#header function getSlideRestitutionOrthoAng( constraint_id) - -Returns the restitution value for orthogonal angular motion. This value determines how much energy is conserved (or how "bouncy" the interaction is) when rotational movement occurs in a direction orthogonal (perpendicular) to the slider's primary axis of movement. - -Orthogonal Angular Motion: In the context of a slider constraint, orthogonal angular motion refers to rotational movement around axes that are perpendicular to the slider's main movement axis. - -Restitution: Restitution is a measure of how much energy is retained in a collision or interaction. A restitution value of 0.0 means no bounce (inelastic collision), and 1.0 means maximum bounce (elastic collision). For orthogonal angular motion, this describes how much bounce occurs after the rotational motion hits the constraints or limits in a perpendicular direction to the slider axis. - -#ref SetSlideRestitutionOrthoAng diff --git a/doc/cw/getsliderestitutionortholin.txt b/doc/cw/getsliderestitutionortholin.txt deleted file mode 100644 index 5f04fc6..0000000 --- a/doc/cw/getsliderestitutionortholin.txt +++ /dev/null @@ -1,10 +0,0 @@ -#title getSlideRestitutionOrthoLin [RCBasic Doc] -#header function getSlideRestitutionOrthoLin( constraint_id) - -Returns the restitution value for orthogonal linear motion. This value determines how much energy is conserved (or how "bouncy" the interaction is) when linear motion occurs in a direction orthogonal (perpendicular) to the primary sliding axis of the constraint. - -Orthogonal Linear Motion: In the context of a slider constraint, orthogonal linear motion refers to translational movement along axes that are perpendicular to the main sliding axis of the constraint. - -Restitution: Restitution is a measure of how much energy is retained or conserved during a collision or interaction. A restitution value of 0.0 indicates no bounce (perfectly inelastic), while 1.0 indicates maximum bounce (perfectly elastic). For orthogonal linear motion, this value describes how much the actors bounce or retain energy when they hit limits or experience movement perpendicular to the slider’s main axis. - -#ref SetSlideRestitutionOrthoLin diff --git a/doc/cw/getslidesoftnessdirang.txt b/doc/cw/getslidesoftnessdirang.txt deleted file mode 100644 index 13fc4aa..0000000 --- a/doc/cw/getslidesoftnessdirang.txt +++ /dev/null @@ -1,7 +0,0 @@ -#title getSlideSoftnessDirAng [RCBasic Doc] -#header function getSlideSoftnessDirAng( constraint_id) - -Returns the softness parameter for the angular motion of the constraint. This parameter is used to define how "soft" or "rigid" the limits of angular motion are, particularly when the angular limits are reached. - -The softness parameter defines how smoothly the constraint responds to limit violations. A higher softness value allows for more gradual movements when limits are approached, while a lower value creates a more rigid response. Softness is particularly useful in simulations to avoid harsh impacts or stiff movements when limits are reached. - diff --git a/doc/cw/getslidesoftnessdirlin.txt b/doc/cw/getslidesoftnessdirlin.txt deleted file mode 100644 index 0e2d685..0000000 --- a/doc/cw/getslidesoftnessdirlin.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title getSlideSoftnessDirLin [RCBasic Doc] -#header function getSlideSoftnessDirLin( constraint_id) - -Returns the softness parameter for the linear motion of the constraint. This parameter influences how the constraint responds when the linear limits of movement are reached along the sliding axis, determining whether the response is soft and gradual or more rigid. - -In the context of constraints, softness defines how "compliant" or "stiff" the constraint behaves when the limits are approached. A higher softness value makes the constraint respond more softly and gradually as the limit is approached, while a lower value makes the response stiffer and more rigid. diff --git a/doc/cw/getslidesoftnesslimang.txt b/doc/cw/getslidesoftnesslimang.txt deleted file mode 100644 index 0f7f6bc..0000000 --- a/doc/cw/getslidesoftnesslimang.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title getSlideSoftnessLimAng [RCBasic Doc] -#header function getSlideSoftnessLimAng( constraint_id) - -Returns the softness parameter for the angular limits of the constraint. This parameter affects how "soft" or "rigid" the constraint behaves when the connected actors reach their angular rotational limits around the slider's axis of rotation. - -The softness parameter defines how compliant or stiff the constraint behaves when the motion approaches a limit. A higher softness makes the constraint more flexible, allowing for smoother motion near the limit. A lower softness makes the limit response more rigid and immediate. diff --git a/doc/cw/getslidesoftnesslimlin.txt b/doc/cw/getslidesoftnesslimlin.txt deleted file mode 100644 index f4c4311..0000000 --- a/doc/cw/getslidesoftnesslimlin.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title getSlideSoftnessLimLin [RCBasic Doc] -#header function getSlideSoftnessLimLin( constraint_id) - -Returns the softness parameter for the linear limits of the constraint. This parameter influences how "soft" or "rigid" the constraint behaves when the connected actors reach their linear (sliding) limits along the constraint's axis of motion. - -The softness parameter defines how compliant or stiff the constraint behaves when limits are approached. A higher softness value allows for a more gradual and flexible response as the limit is reached, while a lower softness value results in a stiffer and more rigid response. diff --git a/doc/cw/getslidesoftnessorthoang.txt b/doc/cw/getslidesoftnessorthoang.txt deleted file mode 100644 index 5b05e05..0000000 --- a/doc/cw/getslidesoftnessorthoang.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title getSlideSoftnessOrthoAng [RCBasic Doc] -#header function getSlideSoftnessOrthoAng( constraint_id) - -Returns the softness parameter for the orthogonal angular limits of the constraint. This parameter controls how "soft" or "rigid" the constraint behaves when angular rotation is limited along directions orthogonal (perpendicular) to the primary axis of motion. - -The softness parameter defines how compliant (soft) or stiff (rigid) the constraint behaves when the bodies approach their angular or linear limits. A higher softness value makes the limit more flexible, allowing for gradual motion, while a lower value makes the limit more rigid and restrictive. diff --git a/doc/cw/getslidesoftnessortholin.txt b/doc/cw/getslidesoftnessortholin.txt deleted file mode 100644 index 7f30409..0000000 --- a/doc/cw/getslidesoftnessortholin.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title getConstraintSoftnessOrthoLin [RCBasic Doc] -#header function getConstraintSoftnessOrthoLin( constraint_id) - -Returns the softness parameter for the orthogonal linear limits of the constraint. This parameter affects how "soft" or "rigid" the constraint behaves when the connected actors approach their linear movement limits in directions that are orthogonal (perpendicular) to the primary sliding axis. - -The softness parameter determines how rigid or compliant the constraint is when the actors approach their movement limits. A higher softness value allows for smoother, more flexible movement near the limit, while a lower value results in a more rigid, immediate response. diff --git a/doc/cw/getslidesolveanglimit.txt b/doc/cw/getslidesolveanglimit.txt deleted file mode 100644 index 6e5a1b9..0000000 --- a/doc/cw/getslidesolveanglimit.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getSlideSolveAngLimit [RCBasic Doc] -#header function getSlideSolveAngLimit( constraint_id) - -Checks whether the angular position of the constraint has reached or exceeded its defined angular limits. It returns a value indicating if the constraint is at or beyond its lower or upper angular limit around the slider’s axis of rotation. diff --git a/doc/cw/getslidesolvelinlimit.txt b/doc/cw/getslidesolvelinlimit.txt deleted file mode 100644 index 0a5d15f..0000000 --- a/doc/cw/getslidesolvelinlimit.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getSlideSolveLinLimit [RCBasic Doc] -#header function getSlideSolveLinLimit( constraint_id) - -Checks whether the linear position of the constraint has reached or exceeded its defined linear limits. It returns a value indicating if the constraint is at or beyond its lower or upper linear limit along the sliding axis. diff --git a/doc/cw/getslideupperanglimit.txt b/doc/cw/getslideupperanglimit.txt deleted file mode 100644 index 7fec7a9..0000000 --- a/doc/cw/getslideupperanglimit.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title getSlideUpperAngLimit [RCBasic Doc] -#header function getSlideUpperAngLimit( constraint_id) - -Returns the upper limit of the angular movement allowed for the constraint. This function is crucial for determining how much rotational freedom is allowed around the axis of rotation defined by the slider constraint. - -The upper angular limit specifies the maximum allowed rotation around the rotational axis for the slider constraint. If the relative rotation between the two actors exceeds this angle, corrective forces are applied to maintain the constraint and prevent further rotation. diff --git a/doc/cw/getslideupperlinlimit.txt b/doc/cw/getslideupperlinlimit.txt deleted file mode 100644 index 6585f0b..0000000 --- a/doc/cw/getslideupperlinlimit.txt +++ /dev/null @@ -1,6 +0,0 @@ -#title getSlideUpperLinLimit [RCBasic Doc] -#header function getSlideUpperLinLimit( constraint_id) - -Returns the upper limit for linear movement along the constraint's axis. This is a crucial function for controlling how far the connected actors can slide along that axis before the constraint enforces limits. - -The upper linear limit specifies the maximum distance that the connected actors can move away from each other along the slider's axis. If the relative movement exceeds this limit, the constraint will apply corrective forces to stop further movement. diff --git a/doc/cw/getslideuseframeoffset.txt b/doc/cw/getslideuseframeoffset.txt deleted file mode 100644 index 0f1469a..0000000 --- a/doc/cw/getslideuseframeoffset.txt +++ /dev/null @@ -1,4 +0,0 @@ -#title getSlideUseFrameOffset [RCBasic Doc] -#header function getSlideUseFrameOffset( constraint_id) - -Returns a boolean value indicating whether the constraint is using frame offsets for its linear and angular limits. diff --git a/doc/doc_files/abs.html b/doc/doc_files/abs.html new file mode 100644 index 0000000..12fd3b1 --- /dev/null +++ b/doc/doc_files/abs.html @@ -0,0 +1,17 @@ + + + + + + Abs [RCBasic Doc] + + + +

function Abs(n)

+

+ Returns the absolute value of n +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/accelname.html b/doc/doc_files/accelname.html new file mode 100644 index 0000000..c3fadcd --- /dev/null +++ b/doc/doc_files/accelname.html @@ -0,0 +1,17 @@ + + + + + + AccelName$ [RCBasic Doc] + + + +

function AccelName$(accel_num)

+

+ Returns the name of an accelerometer +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/acos.html b/doc/doc_files/acos.html new file mode 100644 index 0000000..35de12c --- /dev/null +++ b/doc/doc_files/acos.html @@ -0,0 +1,17 @@ + + + + + + Acos [RCBasic Doc] + + + +

function Acos(n)

+

+ Returns the Arcosine of n +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/activecanvas.html b/doc/doc_files/activecanvas.html new file mode 100644 index 0000000..c391745 --- /dev/null +++ b/doc/doc_files/activecanvas.html @@ -0,0 +1,33 @@ + + + + + + ActiveCanvas [RCBasic Doc] + + + +

function ActiveCanvas()

+

+ Returns the canvas that drawing commands are currently applied to +

+

+ 1 = OpenCanvas(640480006404800) 
+ 2 = OpenCanvas(640480006404800) 
+   
+ Canvas(1) 
+   
+ If ActiveCanvas() = 1 Then 
+    Print "Active canvas is c1" 
+ End If 
+   
+ Canvas(2) 
+   
+ If ActiveCanvas() = 2 Then 
+    Print "Active canvas is now c2" 
+ End If 
+

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/actoranimationislooped.html b/doc/doc_files/actoranimationislooped.html new file mode 100644 index 0000000..6a2ee22 --- /dev/null +++ b/doc/doc_files/actoranimationislooped.html @@ -0,0 +1,23 @@ + + + + + + actorAnimationIsLooped [RCBasic Doc] + + + +

function actorAnimationIsLooped( actor )

+

+ Returns true if an actors animation is set to looped. +

+

+ Note: Actor animation is set to looped with the loopActorAnimation() function. +

+

Related: + loopActorAnimation +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/actoranimationisplaying.html b/doc/doc_files/actoranimationisplaying.html new file mode 100644 index 0000000..7c5fb03 --- /dev/null +++ b/doc/doc_files/actoranimationisplaying.html @@ -0,0 +1,20 @@ + + + + + + ActorAnimationIsPlaying [RCBasic Doc] + + + +

function ActorAnimationIsPlaying(actor)

+

+ Returns true if an actor is currently playing an animation +

+

+ Note: If the number of loops in the animation is set to -1 then this will always be true since it does not return false until it plays the last frame in the last loop +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/actorexists.html b/doc/doc_files/actorexists.html new file mode 100644 index 0000000..642ccd7 --- /dev/null +++ b/doc/doc_files/actorexists.html @@ -0,0 +1,14 @@ + + + + + + ActorExists [RCBasic Doc] + + + +

function ActorExists( actor )

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/actorisintransition.html b/doc/doc_files/actorisintransition.html new file mode 100644 index 0000000..3c26175 --- /dev/null +++ b/doc/doc_files/actorisintransition.html @@ -0,0 +1,22 @@ + + + + + + ActorIsInTransition [RCBasic Doc] + + + +

function ActorIsInTransition( actor )

+

+ Returns true if actor is in a transition from its current frame to the frame set in the StartActorTransition() function +

+

Related: + StartActorTransition + StopActorTransition + GetActorTransitionTime +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/actorissolid.html b/doc/doc_files/actorissolid.html new file mode 100644 index 0000000..71c2baa --- /dev/null +++ b/doc/doc_files/actorissolid.html @@ -0,0 +1,28 @@ + + + + + + ActorIsSolid [RCBasic Doc] + + + +

function ActorIsSolid(actor)

+

+ Returns true or false depending on if physics and collision response applies to an actor. +

+

+ Note: Collision is still able to be checked on an actor but the actor will be like a ghost able to go through wall and other objects. +

+

+ SetActorSolid(actor, true) 
+ Print "Actor solid state: "; ActorIsSolid(actor) 'This will output 1
+ SetActorSolid(actor, false) 
+ Print "Actor solid state: "; ActorIsSolid(actor) 'This will output 0
+ #/end 
+   
+ #ref SetActorSolid 
+   
+ + + \ No newline at end of file diff --git a/doc/doc_files/actorisvisible.html b/doc/doc_files/actorisvisible.html new file mode 100644 index 0000000..e8c734f --- /dev/null +++ b/doc/doc_files/actorisvisible.html @@ -0,0 +1,26 @@ + + + + + + ActorIsVisible [RCBasic Doc] + + + +

function ActorIsVisible( actor )

+

+ Returns true if an actor is visible +

+

+ SetActorVisible(actor, true) 
+ Print "Actor solid state: "; ActorIsVisible(actor) 'Outputs 1
+ SetActorSolid(actor, false) 
+ Print "Actor solid state: "; ActorIsSolid(actor) 'Outputs 0
+

+

Related: + SetActorVisible +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/addactorshadow.html b/doc/doc_files/addactorshadow.html new file mode 100644 index 0000000..60af641 --- /dev/null +++ b/doc/doc_files/addactorshadow.html @@ -0,0 +1,23 @@ + + + + + + AddActorShadow [RCBasic Doc] + + + +

sub AddActorShadow( actor )

+

+ Cast a shadow on an actor during lighting calculations +

+

+ Note: Also check the section on lights for more info +

+

Related: + RemoveActorShadow +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/addmatrix.html b/doc/doc_files/addmatrix.html new file mode 100644 index 0000000..5360855 --- /dev/null +++ b/doc/doc_files/addmatrix.html @@ -0,0 +1,17 @@ + + + + + + AddMatrix [RCBasic Doc] + + + +

function AddMatrix(mA, mB, mC)

+

+ Adds matrix mA to matrix mB and stores the results in mC +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/addmeshbuffer.html b/doc/doc_files/addmeshbuffer.html new file mode 100644 index 0000000..af6b31e --- /dev/null +++ b/doc/doc_files/addmeshbuffer.html @@ -0,0 +1,20 @@ + + + + + + AddMeshBuffer [RCBasic Doc] + + + +

sub AddMeshBuffer( mesh, vertex_count, ByRef vertex_data, ByRef normal_data, ByRef uv_data, index_count, ByRef index_data )

+

+ Sets the vertices, normals, and texture coordinates for a mesh +

+

Related: + CreateMesh +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/addsceneskybox.html b/doc/doc_files/addsceneskybox.html new file mode 100644 index 0000000..fc179b2 --- /dev/null +++ b/doc/doc_files/addsceneskybox.html @@ -0,0 +1,21 @@ + + + + + + AddSceneSkyBox [RCBasic Doc] + + + +

sub AddSceneSkyBox( img_top, img_bottom, img_left, img_right, img_front, img_back)

+

+ Generates a skybox based on the provided images. +

+

Related: + AddSceneSkyDome + AddSceneSkyDomeEx +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/addsceneskydome.html b/doc/doc_files/addsceneskydome.html new file mode 100644 index 0000000..5b56126 --- /dev/null +++ b/doc/doc_files/addsceneskydome.html @@ -0,0 +1,20 @@ + + + + + + AddSceneSkyDome [RCBasic Doc] + + + +

sub AddSceneSkyDome( img )

+

+ Adds a sky dome to the scene +

+

Related: + AddSceneSkyDomeEx +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/addsceneskydomeex.html b/doc/doc_files/addsceneskydomeex.html new file mode 100644 index 0000000..fa4fa68 --- /dev/null +++ b/doc/doc_files/addsceneskydomeex.html @@ -0,0 +1,41 @@ + + + + + + AddSceneSkyDomeEx [RCBasic Doc] + + + +

sub AddSceneSkyDomeEx( img, horiRes, vertRes, txPercentage, spherePercentage, radius)

+

+ Adds a sky dome to the scene +

+ +

Related: + AddSceneSkyBox + AddSceneSkyDome +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/adjointmatrix.html b/doc/doc_files/adjointmatrix.html new file mode 100644 index 0000000..72dd4db --- /dev/null +++ b/doc/doc_files/adjointmatrix.html @@ -0,0 +1,17 @@ + + + + + + AdjointMatrix [RCBasic Doc] + + + +

function AdjointMatrix(mA, mB)

+

+ Stores the adjoint matrix of mA in mB +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/andbit.html b/doc/doc_files/andbit.html new file mode 100644 index 0000000..34287ba --- /dev/null +++ b/doc/doc_files/andbit.html @@ -0,0 +1,17 @@ + + + + + + AndBit [RCBasic Doc] + + + +

function AndBit(a,b)

+

+ Returns the bitwise AND operation of 2 numbers +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/android_getexternalstoragepath.html b/doc/doc_files/android_getexternalstoragepath.html new file mode 100644 index 0000000..cac6134 --- /dev/null +++ b/doc/doc_files/android_getexternalstoragepath.html @@ -0,0 +1,21 @@ + + + + + + Android_GetExternalStoragePath$ [RCBasic Doc] + + + +

function Android_GetExternalStoragePath$()

+

+ Returns the designated external storage path +

+

Related: + Android_GetExternalStorageState + Android_GetInternalStoragePath$ +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/android_getexternalstoragestate.html b/doc/doc_files/android_getexternalstoragestate.html new file mode 100644 index 0000000..9c20903 --- /dev/null +++ b/doc/doc_files/android_getexternalstoragestate.html @@ -0,0 +1,34 @@ + + + + + + Android_GetExternalStorageState [RCBasic Doc] + + + +

function Android_GetExternalStorageState()

+

+ Returns a bitmask of these values: +

+ +

+ If AndBit( Android_GetExternalStorageState(), ANDROID_EXTERNAL_STORAGE_READ ) Then 
+    Print "Can read from external storage" 
+ End If 
+

+

Related: + Android_GetExternalStoragePath$ + Android_GetInternalStoragePath$ +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/android_getinternalstoragepath.html b/doc/doc_files/android_getinternalstoragepath.html new file mode 100644 index 0000000..1c6c85e --- /dev/null +++ b/doc/doc_files/android_getinternalstoragepath.html @@ -0,0 +1,21 @@ + + + + + + Android_GetInternalStoragePath$ [RCBasic Doc] + + + +

function Android_GetInternalStoragePath$()

+

+ Returns the internal storage path +

+

Related: + Android_GetExternalStorageState + Android_GetExternalStoragePath$ +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/android_jni_message.html b/doc/doc_files/android_jni_message.html new file mode 100644 index 0000000..ae39c49 --- /dev/null +++ b/doc/doc_files/android_jni_message.html @@ -0,0 +1,20 @@ + + + + + + Android_JNI_Message$ [RCBasic Doc] + + + +

function Android_JNI_Message$(arg$)

+

+ Passes arg$ to the rcbasic_android_interface() method in the java code for your android app. The java method returns a string. +

+

Related: + Runtime_Utility_Message$ +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/applyactorcentralforcelocal.html b/doc/doc_files/applyactorcentralforcelocal.html new file mode 100644 index 0000000..7822d13 --- /dev/null +++ b/doc/doc_files/applyactorcentralforcelocal.html @@ -0,0 +1,27 @@ + + + + + + ApplyActorCentralForceLocal [RCBasic Doc] + + + +

sub ApplyActorCentralForceLocal( actor, x, y, z)

+

+ Applies a force to the center of mass of an actor in local coordinate space. This force impacts the linear velocity of the object without affecting its rotation. +

+ +

Related: + ApplyActorCentralForceWorld + ApplyActorCentralImpulseLocal + ApplyActorCentralImpulseWorld +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/applyactorcentralforceworld.html b/doc/doc_files/applyactorcentralforceworld.html new file mode 100644 index 0000000..9691595 --- /dev/null +++ b/doc/doc_files/applyactorcentralforceworld.html @@ -0,0 +1,27 @@ + + + + + + ApplyActorCentralForceWorld [RCBasic Doc] + + + +

sub ApplyActorCentralForceWorld( actor, x, y, z)

+

+ Applies a force to the center of mass of an actor in world coordinate space. This force impacts the linear velocity of the object without affecting its rotation. +

+ +

Related: + ApplyActorCentralForceLocal + ApplyActorCentralImpulseLocal + ApplyActorCentralImpulseWorld +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/applyactorcentralimpulselocal.html b/doc/doc_files/applyactorcentralimpulselocal.html new file mode 100644 index 0000000..8a6eb1e --- /dev/null +++ b/doc/doc_files/applyactorcentralimpulselocal.html @@ -0,0 +1,27 @@ + + + + + + ApplyActorCentralImpulseLocal [RCBasic Doc] + + + +

sub ApplyActorCentralImpulseLocal( actor, x, y, z)

+

+ Applies an impulse directly to the center of mass of an actor. An impulse differs from a continuous force in that it applies an immediate, short-duration change to the velocity of the actor. It affects the linear velocity but does not generate rotational effects (since it's applied to the center of mass). +

+ +

Related: + ApplyActorCentralForceLocal + ApplyActorCentralForceWorld + ApplyActorCentralImpulseWorld +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/applyactorcentralimpulseworld.html b/doc/doc_files/applyactorcentralimpulseworld.html new file mode 100644 index 0000000..2bda8cb --- /dev/null +++ b/doc/doc_files/applyactorcentralimpulseworld.html @@ -0,0 +1,27 @@ + + + + + + ApplyActorCentralImpulseWorld [RCBasic Doc] + + + +

sub ApplyActorCentralImpulseWorld( actor, x, y, z)

+

+ Applies an impulse directly to the center of mass of an actor. An impulse differs from a continuous force in that it applies an immediate, short-duration change to the velocity of the actor. It affects the linear velocity but does not generate rotational effects (since it's applied to the center of mass). +

+ +

Related: + ApplyActorCentralForceLocal + ApplyActorCentralForceWorld + ApplyActorCentralImpulseLocal +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/applyactordamping.html b/doc/doc_files/applyactordamping.html new file mode 100644 index 0000000..03c9cd4 --- /dev/null +++ b/doc/doc_files/applyactordamping.html @@ -0,0 +1,38 @@ + + + + + + ApplyActorDamping [RCBasic Doc] + + + +

sub ApplyActorDamping( actor, timeStep)

+

+ Reduces the velocity of an actor over time, simulating the effect of friction or air resistance. +

+

+ This function applies the linear and angular damping values set with the SetActorDamping() function. +

+

+ init_damping = False 
+ SetActorDamping(actor, 0.10.5) 
+ ApplyActorCentralImpulse(actor, 30000) 
+   
+ While True 
+    If Not init_damping Then 
+       ApplyActorDamping(actor, 5.0) 'Will apply the damping effect for 5 seconds
+       init_damping = True 
+    End If 
+    Update() 
+ Wend 
+

+

Related: + setActorDamping + getActorLinearDamping + getActorAngularDamping +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/applyactorforcelocal.html b/doc/doc_files/applyactorforcelocal.html new file mode 100644 index 0000000..c6b4f27 --- /dev/null +++ b/doc/doc_files/applyactorforcelocal.html @@ -0,0 +1,30 @@ + + + + + + ApplyActorForceLocal [RCBasic Doc] + + + +

sub ApplyActorForceLocal( actor, x, y, z, rel_x, rel_y, rel_z)

+

+ Applies a force to an actor at a specific point. Unlike ApplyActorCentralForce(local/world), which applies force only at the center of mass (affecting linear velocity), this can generate both linear motion and rotation (torque), depending on where the force is applied relative to the center of mass. +

+ +

Related: + ApplyActorForceWorld + ApplyActorCentralForceLocal + ApplyActorCentralForceWorld +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/applyactorforceworld.html b/doc/doc_files/applyactorforceworld.html new file mode 100644 index 0000000..13e7bb0 --- /dev/null +++ b/doc/doc_files/applyactorforceworld.html @@ -0,0 +1,30 @@ + + + + + + ApplyActorForceWorld [RCBasic Doc] + + + +

sub ApplyActorForceWorld( actor, x, y, z, rel_x, rel_y, rel_z)

+

+ Applies a force to an actor at a specific point. Unlike ApplyActorCentralForce(local/world), which applies force only at the center of mass (affecting linear velocity), this can generate both linear motion and rotation (torque), depending on where the force is applied relative to the center of mass. +

+ +

Related: + ApplyActorForceLocal + ApplyActorCentralForceLocal + ApplyActorCentralForceWorld +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/applyactorimpulselocal.html b/doc/doc_files/applyactorimpulselocal.html new file mode 100644 index 0000000..a1a8754 --- /dev/null +++ b/doc/doc_files/applyactorimpulselocal.html @@ -0,0 +1,30 @@ + + + + + + ApplyActorImpulseLocal [RCBasic Doc] + + + +

sub ApplyActorImpulseLocal( actor, x, y, z, rel_x, rel_y, rel_z)

+

+ Applies an impulse to an actor at a specific point. Unlike ApplyActorCentralImpulse(local/world), which applies impulse only at the center of mass (affecting linear velocity), this can generate both linear motion and rotation (torque), depending on where the force is applied relative to the center of mass. +

+ +

Related: + ApplyActorImpulseWorld + ApplyActorForceLocal + ApplyActorForceWorld +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/applyactorimpulseworld.html b/doc/doc_files/applyactorimpulseworld.html new file mode 100644 index 0000000..8d8b6c4 --- /dev/null +++ b/doc/doc_files/applyactorimpulseworld.html @@ -0,0 +1,30 @@ + + + + + + applyActorImpulseWorld [RCBasic Doc] + + + +

sub applyActorImpulseWorld( actor, x, y, z, rel_x, rel_y, rel_z)

+

+ Applies an impulse to an actor at a specific point. Unlike ApplyActorCentralImpulse(local/world), which applies impulse only at the center of mass (affecting linear velocity), this can generate both linear motion and rotation (torque), depending on where the force is applied relative to the center of mass. +

+ +

Related: + ApplyActorImpulseLocal + ApplyActorForceLocal + ApplyActorForceWorld +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/applyactortorqueimpulselocal.html b/doc/doc_files/applyactortorqueimpulselocal.html new file mode 100644 index 0000000..c738226 --- /dev/null +++ b/doc/doc_files/applyactortorqueimpulselocal.html @@ -0,0 +1,26 @@ + + + + + + applyActorTorqueImpulseLocal [RCBasic Doc] + + + +

sub applyActorTorqueImpulseLocal( actor, x, y, z)

+

+ Applies an impulse that directly affects the angular velocity of an actor, causing it to rotate. This is similar to applying an impulse, but instead of changing the linear velocity (which applyActorCentralImpulse does), it alters the body's rotational motion (angular velocity) instantaneously. +

+ +

Related: + ApplyActorTorque + ApplyActorTorqueImpulseWorld +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/applyactortorqueimpulseworld.html b/doc/doc_files/applyactortorqueimpulseworld.html new file mode 100644 index 0000000..ffc8248 --- /dev/null +++ b/doc/doc_files/applyactortorqueimpulseworld.html @@ -0,0 +1,26 @@ + + + + + + applyActorTorqueImpulseWorld [RCBasic Doc] + + + +

sub applyActorTorqueImpulseWorld( actor, x, y, z)

+

+ Applies an impulse that directly affects the angular velocity of an actor, causing it to rotate. This is similar to applying an impulse, but instead of changing the linear velocity (which applyActorCentralImpulse does), it alters the body's rotational motion (angular velocity) instantaneously. +

+ +

Related: + ApplyActorTorque + ApplyActorTorqueImpulseLocal +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/applyactortorquelocal.html b/doc/doc_files/applyactortorquelocal.html new file mode 100644 index 0000000..02b61a4 --- /dev/null +++ b/doc/doc_files/applyactortorquelocal.html @@ -0,0 +1,27 @@ + + + + + + applyActorTorqueLocal [RCBasic Doc] + + + +

sub applyActorTorqueLocal( actor, x, y, z)

+

+ Applies a continuous torque to an actor, causing it to accelerate its rotational motion over time. Unlike applyActorTorqueImpulse, which causes an immediate change in angular velocity, this applies a torque force gradually, leading to a continuous rotational effect, similar to applying a force to linear motion. +

+ +

Related: + ApplyActorTorqueWorld + ApplyActorTorqueImpulseLocal + ApplyActorTorqueImpulseWorld +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/applyactortorqueworld.html b/doc/doc_files/applyactortorqueworld.html new file mode 100644 index 0000000..d2265c8 --- /dev/null +++ b/doc/doc_files/applyactortorqueworld.html @@ -0,0 +1,27 @@ + + + + + + applyActorTorqueWorld [RCBasic Doc] + + + +

sub applyActorTorqueWorld( actor, x, y, z)

+

+ Applies a continuous torque to an actor, causing it to accelerate its rotational motion over time. Unlike applyActorTorqueImpulse, which causes an immediate change in angular velocity, this applies a torque force gradually, leading to a continuous rotational effect, similar to applying a force to linear motion. +

+ +

Related: + ApplyActorTorqueLocal + ApplyActorTorqueImpulseLocal + ApplyActorTorqueImpulseWorld +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/arraycopy.html b/doc/doc_files/arraycopy.html new file mode 100644 index 0000000..01a2788 --- /dev/null +++ b/doc/doc_files/arraycopy.html @@ -0,0 +1,25 @@ + + + + + + ArrayCopy [RCBasic Doc] + + + +

sub ArrayCopy(ByRef src, ByRef dst)

+

+ Copies the contents of src array to dst array +

+

+ Note: This function is a special case in that it can take any type for src or dst +

+

Related: + ArrayDim + ArraySize + ArrayFill +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/arraydim.html b/doc/doc_files/arraydim.html new file mode 100644 index 0000000..c2b0268 --- /dev/null +++ b/doc/doc_files/arraydim.html @@ -0,0 +1,22 @@ + + + + + + ArrayDim [RCBasic Doc] + + + +

function ArrayDim(Byref id)

+

+ Returns the number of dimensions in an array +

+

Related: + ArrayCopy + ArrayFill + ArraySize +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/arrayfill.html b/doc/doc_files/arrayfill.html new file mode 100644 index 0000000..c6c12c0 --- /dev/null +++ b/doc/doc_files/arrayfill.html @@ -0,0 +1,22 @@ + + + + + + ArrayFill [RCBasic Doc] + + + +

sub ArrayFill(ByRef src, fdata)

+

+ Fills all the elements in an array with the value in fdata +

+

Related: + ArrayCopy + ArrayDim + ArraySize +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/arrays.html b/doc/doc_files/arrays.html new file mode 100644 index 0000000..add3644 --- /dev/null +++ b/doc/doc_files/arrays.html @@ -0,0 +1,61 @@ + + + + + + RCBasic Arrays [RCBasic Doc] + + + +

ARRAYS

+

+ In complex programs there is often a need to be able to store large amounts of data. It would be unreasonable to have to create a variable for each piece of data we may need to store. This is where an array can come in handy. Arrays are simply ways of using one variable to store multiple different values. You can create arrays of numbers or strings. Look at the following: +

+

+ Dim A[5] 
+

+

+ The above example creates an array of numbers called A. A can store five numbers which are retrieved using A[0] to A[4]. Notice that A[4] is the last element in the array and not A[5]. That is because the first index in the array is 0 and the array only stores 5 numbers. To set the values in this array you could do the following: +

+

+ A[0] = 3 
+ A[1] = 2 
+ A[2] = 7 
+ A[3] = 1 
+ A[4] = 0 
+

+

+ You would access and array just like you would a variable. Look at the following: +

+

+ X = A[0] + A[3]     '( Based on the above example the variable X would be set to 4. )
+

+

+ To make a string variable you would do the same thing you do to make a number variable except you would use the $ just like you would use to make a normal string variable. Look at the following: +

+

+ Dim B$[3] 
+   
+ B[0] = "ABC" 
+ B[1] = "DEF" 
+ B[2] = "I KNOW THE ALPHABET" 
+

+

+ Arrays can have up to 3 dimensions. Adding more dimensions to an array can make organizing data in the array easier depending on the situation. Look at the following: +

+

+ Dim  X[23] 
+ Dim  Y[345] 
+

+

+ The above example creates a 2 dimensional array called X which has 2 indices in its first dimension. Its second dimension has 3 indices. This means that each of the 2 indices in the first dimension can store 3 different values. So X can store a total of 6 different values. The second line creates a 3 dimensional array called Y. Y has 3 indices in its first dimension. Each of those 3 indices has 4 indices in its 2nd dimension. Each of the 4 indices has 5 values it can store. This means that Y can store a total of 60 different values. Look at the following for an example on how to work with these multi-dimensional arrays: +

+

+ X[02] = 5      '(This line sets the 3rd value in the first index to 5. Remember that the first index is always 0 so the 3rd index will be 2.)
+   
+ Y[123] = 6   '(This line sets the 4th value of the 3rd index in the 2nd index in the array to 6. That was a mouth full. )
+

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/arraysize.html b/doc/doc_files/arraysize.html new file mode 100644 index 0000000..20f1cce --- /dev/null +++ b/doc/doc_files/arraysize.html @@ -0,0 +1,22 @@ + + + + + + ArraySize [RCBasic Doc] + + + +

function ArraySize(Byref id, array_dim)

+

+ Returns the number of elements in the given dimension of an array +

+

Related: + ArrayDim + ArrayCopy + ArrayFill +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/asc.html b/doc/doc_files/asc.html new file mode 100644 index 0000000..07241b9 --- /dev/null +++ b/doc/doc_files/asc.html @@ -0,0 +1,17 @@ + + + + + + Asc [RCBasic Doc] + + + +

function Asc(c$)

+

+ Returns the ASCII value of a character. +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/asin.html b/doc/doc_files/asin.html new file mode 100644 index 0000000..ad191a6 --- /dev/null +++ b/doc/doc_files/asin.html @@ -0,0 +1,17 @@ + + + + + + Asin [RCBasic Doc] + + + +

function Asin(n)

+

+ Returns the ArcSine of a number. +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/atan.html b/doc/doc_files/atan.html new file mode 100644 index 0000000..b8cf337 --- /dev/null +++ b/doc/doc_files/atan.html @@ -0,0 +1,17 @@ + + + + + + Atan [RCBasic Doc] + + + +

function Atan(n)

+

+ Returns the ArcTangent of a number. +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/atan2.html b/doc/doc_files/atan2.html new file mode 100644 index 0000000..579e4d7 --- /dev/null +++ b/doc/doc_files/atan2.html @@ -0,0 +1,17 @@ + + + + + + ATan2 [RCBasic Doc] + + + +

Function ATan2(y, x)

+

+ Returns the ArcTangent of x and y +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/augmentmatrix.html b/doc/doc_files/augmentmatrix.html new file mode 100644 index 0000000..f482c74 --- /dev/null +++ b/doc/doc_files/augmentmatrix.html @@ -0,0 +1,20 @@ + + + + + + AugmentMatrix [RCBasic Doc] + + + +

function AugmentMatrix(mA, mB, mC)

+

+ Appends the columns of matrix mB onto matrix mA and stores the result in mC. +

+

+ NOTE: Must mA and mB must be the same number of rows. +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/bin.html b/doc/doc_files/bin.html new file mode 100644 index 0000000..a3ebf49 --- /dev/null +++ b/doc/doc_files/bin.html @@ -0,0 +1,17 @@ + + + + + + Bin$ [RCBasic Doc] + + + +

function Bin$(n)

+

+ Returns the binary representation of a number. +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/bufferfromimage.html b/doc/doc_files/bufferfromimage.html new file mode 100644 index 0000000..425788e --- /dev/null +++ b/doc/doc_files/bufferfromimage.html @@ -0,0 +1,14 @@ + + + + + + BufferFromImage [RCBasic Doc] + + + +

sub BufferFromImage(slot, byref buffer)

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/bufferfrommatrix.html b/doc/doc_files/bufferfrommatrix.html new file mode 100644 index 0000000..b6b92f2 --- /dev/null +++ b/doc/doc_files/bufferfrommatrix.html @@ -0,0 +1,23 @@ + + + + + + BufferFromMatrix [RCBasic Doc] + + + +

sub BufferFromMatrix(ByRef buffer, mA)

+

+ Saves the matrix mA in an array +

+

+ NOTE: buffer must have the same number of dimensions as the desired matrix for the structure to remain intact. +

+

Related: + MatrixFromBuffer +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/bufferfromstring.html b/doc/doc_files/bufferfromstring.html new file mode 100644 index 0000000..0b9455e --- /dev/null +++ b/doc/doc_files/bufferfromstring.html @@ -0,0 +1,20 @@ + + + + + + BufferFromString [RCBasic Doc] + + + +

function BufferFromString(s$, ByRef buffer)

+

+ Stores the byte value of a string into a number buffer +

+

Related: + StringFromBuffer$ +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/canvas.html b/doc/doc_files/canvas.html new file mode 100644 index 0000000..5ada771 --- /dev/null +++ b/doc/doc_files/canvas.html @@ -0,0 +1,20 @@ + + + + + + Canvas [RCBasic Doc] + + + +

sub Canvas(c_num)

+

+ Sets the active canvas for drawing commands to use +

+

Related: + ActiveCanvas +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/canvasclip.html b/doc/doc_files/canvasclip.html new file mode 100644 index 0000000..0913f2c --- /dev/null +++ b/doc/doc_files/canvasclip.html @@ -0,0 +1,20 @@ + + + + + + CanvasClip [RCBasic Doc] + + + +

function CanvasClip(x, y, w, h)

+

+ Returns an image id with a selected portion of the active drawing canvas saved +

+

Related: + WindowClip +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/canvasisvisible.html b/doc/doc_files/canvasisvisible.html new file mode 100644 index 0000000..e4d4fe8 --- /dev/null +++ b/doc/doc_files/canvasisvisible.html @@ -0,0 +1,20 @@ + + + + + + CanvasIsVisible [RCBasic Doc] + + + +

function CanvasIsVisible(c_num)

+

+ Returns true if a canvas is shown in the Window +

+

Related: + SetCanvasVisible +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/canvasz.html b/doc/doc_files/canvasz.html new file mode 100644 index 0000000..b37887e --- /dev/null +++ b/doc/doc_files/canvasz.html @@ -0,0 +1,23 @@ + + + + + + CanvasZ [RCBasic Doc] + + + +

function CanvasZ(c_num)

+

+ Returns the Canvas Z Order. +

+

+ Note: Canvases with a higher Z order are drawn first and those with lower values will be drawn on top +

+

Related: + SetCanvasZ +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/changedir.html b/doc/doc_files/changedir.html new file mode 100644 index 0000000..ea7d13d --- /dev/null +++ b/doc/doc_files/changedir.html @@ -0,0 +1,17 @@ + + + + + + ChangeDir [RCBasic Doc] + + + +

sub ChangeDir(p$)

+

+ Sets the working directory that the directory commands use +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/channelispaused.html b/doc/doc_files/channelispaused.html new file mode 100644 index 0000000..b8c14df --- /dev/null +++ b/doc/doc_files/channelispaused.html @@ -0,0 +1,20 @@ + + + + + + ChannelIsPaused [RCBasic Doc] + + + +

function ChannelIsPaused(channel)

+

+ Returns true if an audio channel is currently paused +

+

Related: + PauseSound +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/channelisplaying.html b/doc/doc_files/channelisplaying.html new file mode 100644 index 0000000..4f233de --- /dev/null +++ b/doc/doc_files/channelisplaying.html @@ -0,0 +1,22 @@ + + + + + + ChannelIsPlaying [RCBasic Doc] + + + +

function ChannelIsPlaying(channel)

+

+ Returns true if an audio channel is playing +

+

Related: + ChannelIsPaused + PlaySound + PlaySoundTimed +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/checksockets.html b/doc/doc_files/checksockets.html new file mode 100644 index 0000000..b57031a --- /dev/null +++ b/doc/doc_files/checksockets.html @@ -0,0 +1,20 @@ + + + + + + CheckSockets [RCBasic Doc] + + + +

function CheckSockets(timeout_ms)

+

+ Checks all connected sockets for activity. If timeout_ms is greater than 0 than it will wait that many milliseconds. If less than 0 it will wait for over 49 days (hint: there is no reason what so ever to set this less than 0). +

+

+ Returns the number of sockets that have activity (ie. a connection was made or data was sent) +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/chr.html b/doc/doc_files/chr.html new file mode 100644 index 0000000..b449c24 --- /dev/null +++ b/doc/doc_files/chr.html @@ -0,0 +1,17 @@ + + + + + + Chr$ [RCBasic Doc] + + + +

function Chr$(n)

+

+ Returns the character with the matching ASCII value n. +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/cint32.html b/doc/doc_files/cint32.html new file mode 100644 index 0000000..8dea700 --- /dev/null +++ b/doc/doc_files/cint32.html @@ -0,0 +1,17 @@ + + + + + + CInt32 [RCBasic Doc] + + + +

function CInt32(i)

+

+ Returns a 32-bit signed integer. +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/cint64.html b/doc/doc_files/cint64.html new file mode 100644 index 0000000..8ecb94d --- /dev/null +++ b/doc/doc_files/cint64.html @@ -0,0 +1,17 @@ + + + + + + CInt64 [RCBasic Doc] + + + +

function CInt64(i)

+

+ Returns a 64-bit signed integer. +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/circle.html b/doc/doc_files/circle.html new file mode 100644 index 0000000..1af0f09 --- /dev/null +++ b/doc/doc_files/circle.html @@ -0,0 +1,17 @@ + + + + + + Circle [RCBasic Doc] + + + +

sub Circle(x,y,radius)

+

+ Draws a circle on the current canvas. +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/circlefill.html b/doc/doc_files/circlefill.html new file mode 100644 index 0000000..554064a --- /dev/null +++ b/doc/doc_files/circlefill.html @@ -0,0 +1,17 @@ + + + + + + CircleFill [RCBasic Doc] + + + +

sub CircleFill(x,y,radius)

+

+ Draws a filled circle on the current canvas. +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/clearactorforces.html b/doc/doc_files/clearactorforces.html new file mode 100644 index 0000000..43c251a --- /dev/null +++ b/doc/doc_files/clearactorforces.html @@ -0,0 +1,31 @@ + + + + + + clearActorForces [RCBasic Doc] + + + +

sub clearActorForces( actor)

+

+ Resets or clears all the forces and torques that have been applied to a rigid body in the current simulation step. This ensures that any forces, including linear forces and torques, do not accumulate from one simulation step to the next. +

+

+ Notes: +

+ +

+ + + \ No newline at end of file diff --git a/doc/doc_files/clearcanvas.html b/doc/doc_files/clearcanvas.html new file mode 100644 index 0000000..e8e98ca --- /dev/null +++ b/doc/doc_files/clearcanvas.html @@ -0,0 +1,17 @@ + + + + + + ClearCanvas [RCBasic Doc] + + + +

sub ClearCanvas()

+

+ Clears the active drawing canvas +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/clearmatrix.html b/doc/doc_files/clearmatrix.html new file mode 100644 index 0000000..82c2b5e --- /dev/null +++ b/doc/doc_files/clearmatrix.html @@ -0,0 +1,17 @@ + + + + + + ClearMatrix [RCBasic Doc] + + + +

sub ClearMatrix(mA)

+

+ Sets all elements in a matrix to zero +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/clearmatrixcolumns.html b/doc/doc_files/clearmatrixcolumns.html new file mode 100644 index 0000000..188769f --- /dev/null +++ b/doc/doc_files/clearmatrixcolumns.html @@ -0,0 +1,21 @@ + + + + + + ClearMatrixColumns [RCBasic Doc] + + + +

function ClearMatrixColumns(mA, c, num_cols)

+

+ Sets all elements in the matrix columns specified to zero. +

+

Related: + ClearMatrix + ClearMatrixRows +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/clearmatrixrows.html b/doc/doc_files/clearmatrixrows.html new file mode 100644 index 0000000..7ea08e7 --- /dev/null +++ b/doc/doc_files/clearmatrixrows.html @@ -0,0 +1,21 @@ + + + + + + ClearMatrixRows [RCBasic Doc] + + + +

function ClearMatrixRows(mA, r, num_rows)

+

+ Sets all elements in the matrix rows specified to zero. +

+

Related: + ClearMatrix + ClearMatrixColumns +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/clearmousezone.html b/doc/doc_files/clearmousezone.html new file mode 100644 index 0000000..e1ee81f --- /dev/null +++ b/doc/doc_files/clearmousezone.html @@ -0,0 +1,17 @@ + + + + + + ClearMouseZone [RCBasic Doc] + + + +

sub ClearMouseZone()

+

+ Removes the previously set mouse zone from the window +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/clearstack_n.html b/doc/doc_files/clearstack_n.html new file mode 100644 index 0000000..6135148 --- /dev/null +++ b/doc/doc_files/clearstack_n.html @@ -0,0 +1,20 @@ + + + + + + ClearStack_N [RCBasic Doc] + + + +

sub ClearStack_N( num_stack )

+

+ Removes all elements from the stack +

+

Related: + ClearStack_S +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/clearstack_s.html b/doc/doc_files/clearstack_s.html new file mode 100644 index 0000000..8587936 --- /dev/null +++ b/doc/doc_files/clearstack_s.html @@ -0,0 +1,20 @@ + + + + + + ClearStack_S [RCBasic Doc] + + + +

sub ClearStack_S( str_stack )

+

+ Removes all elements from the stack +

+

Related: + ClearStack_N +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/clipmatrix.html b/doc/doc_files/clipmatrix.html new file mode 100644 index 0000000..b06e42b --- /dev/null +++ b/doc/doc_files/clipmatrix.html @@ -0,0 +1,17 @@ + + + + + + ClipMatrix [RCBasic Doc] + + + +

sub ClipMatrix(mA, r, c, num_rows, num_cols, mB)

+

+ Copies the specified portion of matrix mA into matrix mB +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/clonecanvas.html b/doc/doc_files/clonecanvas.html new file mode 100644 index 0000000..5e228ab --- /dev/null +++ b/doc/doc_files/clonecanvas.html @@ -0,0 +1,23 @@ + + + + + + CloneCanvas [RCBasic Doc] + + + +

function CloneCanvas(c_num, mode)

+

+ Returns a clone of a canvas. Clone canvases are mirrors of the original canvas so when you draw to one it will also be on the other. This is useful for a splitscreen 2d game. +

+

+ Mode is a canvas render mode like the one passed to OpenCanvas() +

+

Related: + OpenCanvas +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/closecanvas.html b/doc/doc_files/closecanvas.html new file mode 100644 index 0000000..26ed1e9 --- /dev/null +++ b/doc/doc_files/closecanvas.html @@ -0,0 +1,20 @@ + + + + + + CloseCanvas [RCBasic Doc] + + + +

Sub CloseCanvas(c_num)

+

+ Closes a canvas +

+

Related: + OpenCanvas +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/closefile.html b/doc/doc_files/closefile.html new file mode 100644 index 0000000..81566ea --- /dev/null +++ b/doc/doc_files/closefile.html @@ -0,0 +1,20 @@ + + + + + + CloseFile [RCBasic Doc] + + + +

sub CloseFile( stream )

+

+ Closes a file +

+

Related: + OpenFile +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/closewindow.html b/doc/doc_files/closewindow.html new file mode 100644 index 0000000..24efc2d --- /dev/null +++ b/doc/doc_files/closewindow.html @@ -0,0 +1,20 @@ + + + + + + CloseWindow [RCBasic Doc] + + + +

sub CloseWindow( )

+

+ Closes the graphics window +

+

Related: + OpenWindow +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/cls.html b/doc/doc_files/cls.html new file mode 100644 index 0000000..2ab7692 --- /dev/null +++ b/doc/doc_files/cls.html @@ -0,0 +1,17 @@ + + + + + + Cls [RCBasic Doc] + + + +

sub Cls()

+

+ Clears the back buffer on the window +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/cofactormatrix.html b/doc/doc_files/cofactormatrix.html new file mode 100644 index 0000000..f3ad1b5 --- /dev/null +++ b/doc/doc_files/cofactormatrix.html @@ -0,0 +1,20 @@ + + + + + + CofactorMatrix [RCBasic Doc] + + + +

sub CofactorMatrix(mA, r, c)

+

+ Sets matrix mA to a cofactor. This will change the original matrix so it is recommended to copy the matrix if you still need the original matrix. +

+

Related: + CopyMatrix +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/colorkey.html b/doc/doc_files/colorkey.html new file mode 100644 index 0000000..ef6bf75 --- /dev/null +++ b/doc/doc_files/colorkey.html @@ -0,0 +1,17 @@ + + + + + + ColorKey [RCBasic Doc] + + + +

sub ColorKey(img_id, c)

+

+ Sets the color key for an image +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/command.html b/doc/doc_files/command.html new file mode 100644 index 0000000..558c114 --- /dev/null +++ b/doc/doc_files/command.html @@ -0,0 +1,23 @@ + + + + + + Command$ [RCBasic Doc] + + + +

function Command$(arg)

+

+ Returns command line arguments passed to a program. +

+

+ Note: Command$(0) will always be the program being executed ( your_program.cbc ) +

+

Related: + NumCommands +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/comments.html b/doc/doc_files/comments.html new file mode 100644 index 0000000..65f835d --- /dev/null +++ b/doc/doc_files/comments.html @@ -0,0 +1,32 @@ + + + + + + RCBasic Comments [RCBasic Doc] + + + +

COMMENTS

+

+ Comments are remarks you can add to your code which will be ignored by the compiler. To make a comment you would use a single quote. Look at the following: +

+

+ ' THIS IS A COMMENT
+ Print HELLO "WORLD ' THIS IS ANOTHER COMMENT
+

+

+ MULTI-LINE COMMENTS +

+

+ Multi-line comments are comments that can span multiple lines. To start a multi-line comment you would use forward slash followed by a single quote and you would end it with a single quote followed by a forward slash. Look at the following: +

+

+ /' THIS IS
+ A 
+ MULTI-LINE COMMENT '/
+

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/computeactorangularimpulsedenominator.html b/doc/doc_files/computeactorangularimpulsedenominator.html new file mode 100644 index 0000000..06962d3 --- /dev/null +++ b/doc/doc_files/computeactorangularimpulsedenominator.html @@ -0,0 +1,20 @@ + + + + + + ComputeActorAngularImpulseDenominator [RCBasic Doc] + + + +

function ComputeActorAngularImpulseDenominator( actor, x, y, z)

+

+ Computes a scalar value that represents how an actor will respond to an angular impulse at a given point, taking into account the actor's inertia tensor (which governs how the object resists rotation). This function is particularly useful in calculating the actor's rotational response to an impulse, typically during collision resolution or constraints involving rotation. +

+

Related: + ComputeActorImpulseDenominator +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/computeactorgyroimpulselocal.html b/doc/doc_files/computeactorgyroimpulselocal.html new file mode 100644 index 0000000..f18826e --- /dev/null +++ b/doc/doc_files/computeactorgyroimpulselocal.html @@ -0,0 +1,20 @@ + + + + + + ComputeActorGyroImpulseLocal [RCBasic Doc] + + + +

sub ComputeActorGyroImpulseLocal( actor, dt, ByRef x, ByRef y, ByRef z)

+

+ Computes the gyroscopic impulse for an actor in an implicit manner, based on the actor's current angular velocity and inertia. This function is used to simulate the gyroscopic effect—also known as gyroscopic precession—which occurs when a rotating object experiences a torque that causes its axis of rotation to change. +

+

Related: + ComputeActorGyroImpulseWorld +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/computeactorgyroimpulseworld.html b/doc/doc_files/computeactorgyroimpulseworld.html new file mode 100644 index 0000000..bad5d65 --- /dev/null +++ b/doc/doc_files/computeactorgyroimpulseworld.html @@ -0,0 +1,20 @@ + + + + + + ComputeActorGyroImpulseWorld [RCBasic Doc] + + + +

sub ComputeActorGyroImpulseWorld( actor, dt, ByRef x, ByRef y, ByRef z)

+

+ Computes the gyroscopic impulse for an actor in an implicit manner, but in this case, it performs the calculation relative to the world frame of reference, rather than the actor’s local frame. This function is used to handle the gyroscopic effects (i.e., gyroscopic precession) of a rotating object when a torque is applied, affecting its axis of rotation. +

+

Related: + ComputeActorGyroImpulseLocal +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/computeactorimpulsedenominator.html b/doc/doc_files/computeactorimpulsedenominator.html new file mode 100644 index 0000000..a3ce3de --- /dev/null +++ b/doc/doc_files/computeactorimpulsedenominator.html @@ -0,0 +1,20 @@ + + + + + + ComputeActorImpulseDenominator [RCBasic Doc] + + + +

function ComputeActorImpulseDenominator( actor, pos_x, pos_y, pos_z, normal_x, normal_y, normal_z)

+

+ Computes a scalar value related to how a rigid body will respond to an applied impulse at a given point. It’s primarily used internally in the physics engine to calculate how an object’s mass, inertia, and shape will affect the outcome of impulses, particularly in collisions or constraints like contact points between objects. +

+

Related: + ComputeActorAngularImpulseDenominator +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/conditions.html b/doc/doc_files/conditions.html new file mode 100644 index 0000000..f4fcdd7 --- /dev/null +++ b/doc/doc_files/conditions.html @@ -0,0 +1,60 @@ + + + + + + RCBasic Conditions [RCBasic Doc] + + + +

CONDITIONS

+

+ RC BASIC uses the same conventions of other programming languages to control the flow of the program. There are two main ways of getting your program to decide on its next course of action. The most common way is with the IF statement block. +

+

+ If 5 > 6 Then 
+    Print "THIS WILL NOT PRINT" 
+ ElseIf 5 < 6 Then 
+    Print "THIS WILL PRINT" 
+ Else 
+    Print "THIS ALSO WILL NOT PRINT" 
+ End If 
+

+

+ The above example does different comparisons and will output text to a console depending on which condition is true. +

+

+ The next method of control flow is the SELECT statement block. +

+

+ Select Case 5 
+ Case 6 
+    Print THIS WILL NOT "PRINT
+ Case 5 
+    Print "THIS WILL PRINT" 
+ Default 
+    'Note: Default will be true if every other case is false.
+    ' Default is optional and can be excluded if you don't need it
+    Print "THIS WILL NOT PRINT" 
+ End Select 
+

+

+ The above example will compare each case in the block to the SELECT CASE. If the case is equal to the select case then the code in that case will be executed. You can also add multiple values to compare to each CASE. +

+

+ Select Case 5 
+ Case 6 
+    Print THIS WILL NOT "PRINT
+ Case 45 
+    Print "THIS WILL PRINT" 
+ Default 
+    Print "THIS WILL NOT PRINT" 
+ End Select 
+

+

+ The above example is mostly the same as the previous example. The difference is that in our second CASE we are comparing both 4 and 5. If either of them are equal to our SELECT argument then the code inside the CASE block will execute. +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/constants.html b/doc/doc_files/constants.html new file mode 100644 index 0000000..4696681 --- /dev/null +++ b/doc/doc_files/constants.html @@ -0,0 +1,21 @@ + + + + + + RCBasic Constants [RCBasic Doc] + + + +

CONSTANTS

+

+ RCBasic has a special type of variable called a constant which can hold an expression. This means it can hold an expression and not determine its value until its used. For example you can have a constant called C that is equal to A + B. Everytime you change the value of A or B, C's value will also change. Because constants hold expressions, any valid expression in RCBasic can be stored in a constant. +

+

+ const  A = 5 
+ const  MY_PRINT = print "hello world" 
+

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/constraintexists.html b/doc/doc_files/constraintexists.html new file mode 100644 index 0000000..9ac8234 --- /dev/null +++ b/doc/doc_files/constraintexists.html @@ -0,0 +1,14 @@ + + + + + + ConstraintExists [RCBasic Doc] + + + +

function ConstraintExists( constraint_id )

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/copyactormaterial.html b/doc/doc_files/copyactormaterial.html new file mode 100644 index 0000000..acbb09c --- /dev/null +++ b/doc/doc_files/copyactormaterial.html @@ -0,0 +1,17 @@ + + + + + + copyActorMaterial [RCBasic Doc] + + + +

function copyActorMaterial( actor, material_num)

+

+ Returns a material id for a copy of an actor's material +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/copyfile.html b/doc/doc_files/copyfile.html new file mode 100644 index 0000000..50b1ca9 --- /dev/null +++ b/doc/doc_files/copyfile.html @@ -0,0 +1,17 @@ + + + + + + CopyFile [RCBasic Doc] + + + +

sub CopyFile(src$, dst$)

+

+ Copies the contents of src$ file to a new dst$ file +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/copyimage.html b/doc/doc_files/copyimage.html new file mode 100644 index 0000000..be775b7 --- /dev/null +++ b/doc/doc_files/copyimage.html @@ -0,0 +1,17 @@ + + + + + + CopyImage [RCBasic Doc] + + + +

function CopyImage( img_id )

+

+ Returns a copy of an image +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/copymaterial.html b/doc/doc_files/copymaterial.html new file mode 100644 index 0000000..075a306 --- /dev/null +++ b/doc/doc_files/copymaterial.html @@ -0,0 +1,17 @@ + + + + + + copyMaterial [RCBasic Doc] + + + +

function copyMaterial( smaterial_id)

+

+ Returns a copy of a material +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/copymatrix.html b/doc/doc_files/copymatrix.html new file mode 100644 index 0000000..36f7ff1 --- /dev/null +++ b/doc/doc_files/copymatrix.html @@ -0,0 +1,17 @@ + + + + + + CopyMatrix [RCBasic Doc] + + + +

sub CopyMatrix(mA, mB)

+

+ Copies matrix mA to matrix mB +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/copymatrixcolumns.html b/doc/doc_files/copymatrixcolumns.html new file mode 100644 index 0000000..6d4898d --- /dev/null +++ b/doc/doc_files/copymatrixcolumns.html @@ -0,0 +1,20 @@ + + + + + + CopyMatrixColumns [RCBasic Doc] + + + +

function CopyMatrixColumns(mA, mB, c, num_cols)

+

+ Copies the specified matrix columns from matrix mA to matrix mB. +

+

+ Note: Matrix mB will be redimensioned to the size of the copied columns. +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/copymatrixrows.html b/doc/doc_files/copymatrixrows.html new file mode 100644 index 0000000..482687d --- /dev/null +++ b/doc/doc_files/copymatrixrows.html @@ -0,0 +1,20 @@ + + + + + + CopyMatrixRows [RCBasic Doc] + + + +

function CopyMatrixRows(mA, mB, r, num_rows)

+

+ Copies the specified matrix rows from matrix mA to matrix mB. +

+

+ Note: Matrix mB will be redimensioned to the size of the copied rows. +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/cos.html b/doc/doc_files/cos.html new file mode 100644 index 0000000..7d67e00 --- /dev/null +++ b/doc/doc_files/cos.html @@ -0,0 +1,17 @@ + + + + + + Cos [RCBasic Doc] + + + +

function Cos(n)

+

+ Returns the Cosine of an angle +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/createactoranimation.html b/doc/doc_files/createactoranimation.html new file mode 100644 index 0000000..db707e9 --- /dev/null +++ b/doc/doc_files/createactoranimation.html @@ -0,0 +1,14 @@ + + + + + + CreateActorAnimation [RCBasic Doc] + + + +

Function CreateActorAnimation(actor, start_frame, end_frame, speed)

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/createanimatedactor.html b/doc/doc_files/createanimatedactor.html new file mode 100644 index 0000000..1146adc --- /dev/null +++ b/doc/doc_files/createanimatedactor.html @@ -0,0 +1,37 @@ + + + + + + CreateAnimatedActor [RCBasic Doc] + + + +

function CreateAnimatedActor( mesh )

+

+ Returns a new animated actor composed of a mesh +

+

+ The mesh can either be created using CreateMesh() or Loaded using LoadMesh() +

+

Related: + CreateMesh + LoadMesh + LoadMeshFromAN8 +

+

+
+

+

Related: + CreateOctreeActor + CreateCubeActor + CreateSphereActor + CreateWaterActor + CreateLightActor + CreateBillboardActor + CreateTerrainActor +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/createbillboardactor.html b/doc/doc_files/createbillboardactor.html new file mode 100644 index 0000000..960d051 --- /dev/null +++ b/doc/doc_files/createbillboardactor.html @@ -0,0 +1,29 @@ + + + + + + CreateBillboardActor [RCBasic Doc] + + + +

function CreateBillboardActor( )

+

+ Returns a billboard actor +

+

+ Billboard actors are flat textured planes that are always facing the camera. +

+

Related: + CreateAnimatedActor + CreateOctreeActor + CreateSphereActor + CreateWaterActor + CreateLightActor + CreateCubeActor + CreateTerrainActor +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/createconeconstraint.html b/doc/doc_files/createconeconstraint.html new file mode 100644 index 0000000..4bc8256 --- /dev/null +++ b/doc/doc_files/createconeconstraint.html @@ -0,0 +1,36 @@ + + + + + + CreateConeConstraint [RCBasic Doc] + + + +

function CreateConeConstraint( actorA, rbAFrame_matrix)

+

+ The Cone Constraint is a type of joint constraint used to simulate realistic rotational movement between two actors (or between an actor and the world) with specific angular limits. This constraint is especially useful for simulating ball-and-socket joints with some twisting freedom but restricted cone-like movement, such as human shoulders or robotic arms. +

+

+ actorA = CreateCubeActor(100) 
+   
+ rbA = DimMatrix(44) 'A transform matrix should be a 4x4 matrix
+ SetIdentityMatrix(rbA, 4) 'This will set rbA to a 4x4 identity matrix
+ SetMatrixTranslation(rbA, 0400) 'Set the point where the constraint connects to actorA to 1 unit above its origin
+ SetMatrixRotation(rbA, 000) 'Sets the angle the constraint is attached at to 0 on all axes
+   
+ test_cone = CreateConeConstraint( actorA, rbA ) 
+

+

+ Note: It is recommended to use CreateConeConstraintEx() in most cases +

+

Related: + CreateConeConstraintEx + SetIdentityMatrix + SetMatrixTranslation + SetMatrixRotation +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/createconeconstraintex.html b/doc/doc_files/createconeconstraintex.html new file mode 100644 index 0000000..bfe5bc3 --- /dev/null +++ b/doc/doc_files/createconeconstraintex.html @@ -0,0 +1,39 @@ + + + + + + createConeConstraintEx [RCBasic Doc] + + + +

function createConeConstraintEx( actorA, actorB, rbAFrame_matrix, rbBFrame_matrix)

+

+ The Cone Constraint is a type of joint constraint used to simulate realistic rotational movement between two actors (or between an actor and the world) with specific angular limits. This constraint is especially useful for simulating ball-and-socket joints with some twisting freedom but restricted cone-like movement, such as human shoulders or robotic arms. +

+

+ actorA = CreateCubeActor(100) 
+ actorB = CreateCubeActor(100) 
+   
+ rbA = DimMatrix(44) 'A transform matrix should be a 4x4 matrix
+ SetIdentityMatrix(rbA, 4) 'This will set rbA to a 4x4 identity matrix
+ SetMatrixTranslation(rbA, 0400) 'Set the point where the constraint connects to actorA to 1 unit above its origin
+ SetMatrixRotation(rbA, 000) 'Sets the angle the constraint is attached at to 0 on all axes
+   
+ rbB = DimMatrix(44) 'A transform matrix should be a 4x4 matrix
+ SetIdentityMatrix(rbB, 4) 'This will set rbA to a 4x4 identity matrix
+ SetMatrixTranslation(rbB, 0400) 'Set the point where the constraint connects to actorA to 1 unit above its origin
+ SetMatrixRotation(rbB, 000) 'Sets the angle the constraint is attached at to 0 on all axes
+   
+ test_cone = CreateConeConstraint( actorA, rbA ) 
+

+

Related: + CreateConeConstraint + SetIdentityMatrix + SetMatrixTranslation + SetMatrixRotation +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/createcubeactor.html b/doc/doc_files/createcubeactor.html new file mode 100644 index 0000000..b5bccbe --- /dev/null +++ b/doc/doc_files/createcubeactor.html @@ -0,0 +1,26 @@ + + + + + + CreateCubeActor [RCBasic Doc] + + + +

function CreateCubeActor( cube_size )

+

+ Returns an actor with a cube mesh of the specified size ( cube_size x cube_size x cube_size ) +

+

Related: + CreateAnimatedActor + CreateOctreeActor + CreateSphereActor + CreateWaterActor + CreateLightActor + CreateBillboardActor + CreateTerrainActor +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/createhingeconstraint.html b/doc/doc_files/createhingeconstraint.html new file mode 100644 index 0000000..3b5cc44 --- /dev/null +++ b/doc/doc_files/createhingeconstraint.html @@ -0,0 +1,33 @@ + + + + + + createHingeConstraint [RCBasic Doc] + + + +

function createHingeConstraint( actorA, frameA, useReferenceFrameA )

+

+ Simulates a hinge joint, which allows two actors (or an actor and the world) to rotate around a single axis while restricting movement along the other axes. This is similar to the way a door swings on its hinges or how an elbow joint functions in the human body. +

+

+ actorA = CreateCubeActor(100) 'Creates a cube actor
+ frameA = DimMatrix(44) 'A transform matrix must be a 4x4 matrix
+ SetIdentityMatrix(frameA, 4) 'Sets frameB to a 4x4 identity matrix
+ SetMatrixTranslation(frameA, 010) 'Sets the attach point of the constraint to the top of the cube
+ hinge = CreateHingeConstraint(actorA, frameA, true) 
+

+

+ Note: It is recommended to use CreateSlideConstraintEx() in most cases +

+

Related: + CreateHingeConstraintEx + SetIdentityMatrix + SetMatrixTranslation + SetMatrixRotation +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/createhingeconstraintex.html b/doc/doc_files/createhingeconstraintex.html new file mode 100644 index 0000000..5f2467b --- /dev/null +++ b/doc/doc_files/createhingeconstraintex.html @@ -0,0 +1,39 @@ + + + + + + createHingeConstraintEx [RCBasic Doc] + + + +

function createHingeConstraintEx( actorA, actorB, frameA, frameB, useReferenceFrameA)

+

+ Simulates a hinge joint, which allows two actors (or an actor and the world) to rotate around a single axis while restricting movement along the other axes. This is similar to the way a door swings on its hinges or how an elbow joint functions in the human body. +

+

+ actorA = CreateCubeActor(100) 'Creates a cube actor
+ frameA = DimMatrix(44) 'A transform matrix must be a 4x4 matrix
+ SetIdentityMatrix(frameA, 4) 'Sets frameB to a 4x4 identity matrix
+ SetMatrixTranslation(frameA, 010) 'Sets the attach point of the constraint to the top of the cube
+   
+ actorB = CreateCubeActor(100) 'Creates a cube actor
+ frameB = DimMatrix(44) 'A transform matrix must be a 4x4 matrix
+ SetIdentityMatrix(frameB, 4) 'Sets frameB to a 4x4 identity matrix
+ SetMatrixTranslation(frameB, 010) 'Sets the attach point of the constraint to the top of the cube
+   
+ hinge = CreateHingeConstraint(actorA, actorB, frameA, frameB, true) 
+

+

+ Note: It is recommended to use CreateHingeConstraintEx() in most cases +

+

Related: + CreateHingeConstraint + SetIdentityMatrix + SetMatrixTranslation + SetMatrixRotation +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/createimage.html b/doc/doc_files/createimage.html new file mode 100644 index 0000000..1bb8d4f --- /dev/null +++ b/doc/doc_files/createimage.html @@ -0,0 +1,21 @@ + + + + + + CreateImage [RCBasic Doc] + + + +

function CreateImage(w, h, byref buffer)

+

+ Returns an image created from the buffer provided +

+

Related: + CreateImageEx + LoadImage +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/createimageex.html b/doc/doc_files/createimageex.html new file mode 100644 index 0000000..ca754eb --- /dev/null +++ b/doc/doc_files/createimageex.html @@ -0,0 +1,24 @@ + + + + + + createImageEx [RCBasic Doc] + + + +

function createImageEx(w, h, byref buffer, color)

+

+ Returns an image created from the buffer provided +

+

+ The color parameter is a color key value to apply +

+

Related: + CreateImage + LoadImage +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/createlightactor.html b/doc/doc_files/createlightactor.html new file mode 100644 index 0000000..46d9463 --- /dev/null +++ b/doc/doc_files/createlightactor.html @@ -0,0 +1,26 @@ + + + + + + CreateLightActor [RCBasic Doc] + + + +

function CreateLightActor( )

+

+ Returns a new light in the scene +

+

Related: + CreateMeshActor + CreateMeshOctreeActor + CreateCubeActor + CreateSphereActor + CreateWaterPlaneActor + CreateBillboardActor + CreateTerrainActor +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/creatematerial.html b/doc/doc_files/creatematerial.html new file mode 100644 index 0000000..262368d --- /dev/null +++ b/doc/doc_files/creatematerial.html @@ -0,0 +1,17 @@ + + + + + + createMaterial [RCBasic Doc] + + + +

function createMaterial()

+

+ Returns a new material +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/createmesh.html b/doc/doc_files/createmesh.html new file mode 100644 index 0000000..023391d --- /dev/null +++ b/doc/doc_files/createmesh.html @@ -0,0 +1,17 @@ + + + + + + CreateMesh [RCBasic Doc] + + + +

function CreateMesh( )

+

+ Returns a new mesh +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/createmeshactor.html b/doc/doc_files/createmeshactor.html new file mode 100644 index 0000000..7651833 --- /dev/null +++ b/doc/doc_files/createmeshactor.html @@ -0,0 +1,37 @@ + + + + + + CreateAnimatedActor [RCBasic Doc] + + + +

function CreateAnimatedActor( mesh )

+

+ Returns a new animated actor composed of a mesh +

+

+ The mesh can either be created using CreateMesh() or Loaded using LoadMesh() +

+

Related: + CreateMesh + LoadMesh + LoadMeshFromAN8 +

+

+
+

+

Related: + CreateOctreeActor + CreateCubeActor + CreateSphereActor + CreateWaterPlaneActor + CreateLightActor + CreateBillboardActor + CreateTerrainActor +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/createmeshoctreeactor.html b/doc/doc_files/createmeshoctreeactor.html new file mode 100644 index 0000000..773d56a --- /dev/null +++ b/doc/doc_files/createmeshoctreeactor.html @@ -0,0 +1,33 @@ + + + + + + CreateMeshOctreeActor [RCBasic Doc] + + + +

function CreateMeshOctreeActor( mesh )

+

+ Returns a mesh actor optimized for large objects (such as levels) +

+

Related: + CreateMesh + LoadMesh +

+

+
+

+

Related: + CreateMeshActor + CreateCubeActor + CreateSphereActor + CreateWaterPlaneActor + CreateLightActor + CreateBillboardActor + CreateTerrainActor +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/createoctreeactor.html b/doc/doc_files/createoctreeactor.html new file mode 100644 index 0000000..f98ec0b --- /dev/null +++ b/doc/doc_files/createoctreeactor.html @@ -0,0 +1,33 @@ + + + + + + CreateOctreeActor [RCBasic Doc] + + + +

function CreateOctreeActor( mesh )

+

+ Returns a mesh actor optimized for large objects (such as levels) +

+

Related: + CreateMesh + LoadMesh +

+

+
+

+

Related: + CreateAnimatedActor + CreateCubeActor + CreateSphereActor + CreateWaterActor + CreateLightActor + CreateBillboardActor + CreateTerrainActor +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/createparticleactor.html b/doc/doc_files/createparticleactor.html new file mode 100644 index 0000000..df45f38 --- /dev/null +++ b/doc/doc_files/createparticleactor.html @@ -0,0 +1,49 @@ + + + + + + CreateParticleActor [RCBasic Doc] + + + +

function CreateParticleActor( particle_type )

+

+ Returns a new particle actor +

+

+ Possible Particle Types +

+ +

Related: + CreateMeshOctreeActor + CreateCubeActor + CreateSphereActor + CreateWaterPlaneActor + CreateLightActor + CreateBillboardActor + CreateTerrainActor +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/createplanemesh.html b/doc/doc_files/createplanemesh.html new file mode 100644 index 0000000..3967e52 --- /dev/null +++ b/doc/doc_files/createplanemesh.html @@ -0,0 +1,25 @@ + + + + + + CreatePlaneMesh [RCBasic Doc] + + + +

Function CreatePlaneMesh( w, h, tileCount_w, tileCount_h )

+

+ Creates a flat plane +

+ +

+ + + \ No newline at end of file diff --git a/doc/doc_files/createpointconstraint.html b/doc/doc_files/createpointconstraint.html new file mode 100644 index 0000000..f9ecea7 --- /dev/null +++ b/doc/doc_files/createpointconstraint.html @@ -0,0 +1,20 @@ + + + + + + createPointConstraint [RCBasic Doc] + + + +

function createPointConstraint( actorA, pxA, pyA, pzA)

+

+ A type of constraint that allows two actors (or an actor and the world) to move freely relative to each other while ensuring that one point on each body remains coincident. Essentially, it ensures that the two actors stay connected at a single point, but without restricting their relative rotations. This kind of constraint is useful when you need a connection that allows full rotation in all directions, such as a pendulum, ball joint, or even some suspension systems. +

+

Related: + CreatePointConstraintEx +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/createpointconstraintex.html b/doc/doc_files/createpointconstraintex.html new file mode 100644 index 0000000..b603e5d --- /dev/null +++ b/doc/doc_files/createpointconstraintex.html @@ -0,0 +1,20 @@ + + + + + + createPointConstraintEx [RCBasic Doc] + + + +

function createPointConstraintEx( actorA, actorB, pxA, pyA, pzA, pxB, pyB, pzB)

+

+ A type of constraint that allows two actors (or an actor and the world) to move freely relative to each other while ensuring that one point on each body remains coincident. Essentially, it ensures that the two actors stay connected at a single point, but without restricting their relative rotations. This kind of constraint is useful when you need a connection that allows full rotation in all directions, such as a pendulum, ball joint, or even some suspension systems. +

+

Related: + CreatePointConstraint +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/createslideconstraint.html b/doc/doc_files/createslideconstraint.html new file mode 100644 index 0000000..d1f8c1e --- /dev/null +++ b/doc/doc_files/createslideconstraint.html @@ -0,0 +1,34 @@ + + + + + + createSlideConstraint [RCBasic Doc] + + + +

function createSlideConstraint( actorA, frameInB_matrix, useLinearReferenceFrameA)

+

+ A type of constraint that restricts the motion between two actors (or between an actor and the world) in such a way that they can slide along a specific axis and rotate around the same axis, while limiting or allowing movement along other axes. This constraint is similar to a prismatic joint with added rotational freedom, making it useful for simulating objects like pistons, sliding doors, or rail systems. +

+

+ actorA = CreateCubeActor(100) 'Creates a cube actor
+ frameB = DimMatrix(44) 'A transform matrix must be a 4x4 matrix
+ SetIdentityMatrix(frameB, 4) 'Sets frameB to a 4x4 identity matrix
+ SetMatrixTranslation(frameB, 0500) 'Sets the attach point of the constraint to the top of the cube
+ SetMatrixRotation(frameB, 0900) 'Rotates the constraint axis by 90 degrees around y
+ slide = CreateSlideConstraint(actorA, frameB, true) 
+

+

+ Note: It is recommended to use CreateSlideConstraintEx() in most cases +

+

Related: + CreateSlideConstraintEx + SetIdentityMatrix + SetMatrixTranslation + SetMatrixRotation +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/createslideconstraintex.html b/doc/doc_files/createslideconstraintex.html new file mode 100644 index 0000000..00371f4 --- /dev/null +++ b/doc/doc_files/createslideconstraintex.html @@ -0,0 +1,40 @@ + + + + + + createSlideConstraintEx [RCBasic Doc] + + + +

function createSlideConstraintEx( actorA, actorB, frameInA_matrix, frameInB_matrix, useLinearReferenceFrameA)

+

+ A type of constraint that restricts the motion between two actors (or between an actor and the world) in such a way that they can slide along a specific axis and rotate around the same axis, while limiting or allowing movement along other axes. This constraint is similar to a prismatic joint with added rotational freedom, making it useful for simulating objects like pistons, sliding doors, or rail systems. +

+

+ actorA = CreateCubeActor(100) 'Creates a cube actor
+ frameA = DimMatrix(44) 'A transform matrix must be a 4x4 matrix
+ SetIdentityMatrix(frameA, 4) 'Sets frameB to a 4x4 identity matrix
+ SetMatrixTranslation(frameA, 000) 'Sets the attach point of the constraint to center of the cube
+ SetMatrixRotation(frameA, 0900) 'Rotates the constraint axis by 90 degrees around y
+   
+ actorB = CreateCubeActor(100) 'Creates a cube actor
+ frameB = DimMatrix(44) 'A transform matrix must be a 4x4 matrix
+ SetIdentityMatrix(frameB, 4) 'Sets frameB to a 4x4 identity matrix
+ SetMatrixTranslation(frameB, 0500) 'Sets the attach point of the constraint to the top of the cube
+ SetMatrixRotation(frameB, 0900) 'Rotates the constraint axis by 90 degrees around y
+ slide = CreateSlideConstraintEx(actorA, actorB, frameA, frameB, true) 
+

+

+ Note: It is recommended to use CreateSlideConstraintEx() in most cases +

+

Related: + CreateSlideConstraint + SetIdentityMatrix + SetMatrixTranslation + SetMatrixRotation +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/createsound.html b/doc/doc_files/createsound.html new file mode 100644 index 0000000..f0e836a --- /dev/null +++ b/doc/doc_files/createsound.html @@ -0,0 +1,17 @@ + + + + + + CreateSound [RCBasic Doc] + + + +

function CreateSound(byref buffer, buffer_size, vol)

+

+ Returns a new sound from a buffer of raw audio data +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/createsphereactor.html b/doc/doc_files/createsphereactor.html new file mode 100644 index 0000000..78b54cd --- /dev/null +++ b/doc/doc_files/createsphereactor.html @@ -0,0 +1,26 @@ + + + + + + CreateSphereActor [RCBasic Doc] + + + +

function CreateSphereActor( radius )

+

+ Returns an actor composed of a sphere mesh +

+

Related: + CreateAnimatedActor + CreateOctreeActor + CreateBillboardActor + CreateWaterActor + CreateLightActor + CreateCubeActor + CreateTerrainActor +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/createsprite.html b/doc/doc_files/createsprite.html new file mode 100644 index 0000000..d83eab9 --- /dev/null +++ b/doc/doc_files/createsprite.html @@ -0,0 +1,17 @@ + + + + + + CreateSprite [RCBasic Doc] + + + +

function CreateSprite( img )

+

+ Returns new sprite +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/createspriteanimation.html b/doc/doc_files/createspriteanimation.html new file mode 100644 index 0000000..86e6406 --- /dev/null +++ b/doc/doc_files/createspriteanimation.html @@ -0,0 +1,25 @@ + + + + + + CreateSpriteAnimation [RCBasic Doc] + + + +

Function CreateSpriteAnimation(sprite, anim_length, speed)

+

+ Returns a new sprite animation id +

+ +

+ + + \ No newline at end of file diff --git a/doc/doc_files/createstack_n.html b/doc/doc_files/createstack_n.html new file mode 100644 index 0000000..0636ce1 --- /dev/null +++ b/doc/doc_files/createstack_n.html @@ -0,0 +1,17 @@ + + + + + + CreateStack_N [RCBasic Doc] + + + +

function CreateStack_N( )

+

+ Returns a new number stack +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/createstack_s.html b/doc/doc_files/createstack_s.html new file mode 100644 index 0000000..5f954c2 --- /dev/null +++ b/doc/doc_files/createstack_s.html @@ -0,0 +1,17 @@ + + + + + + CreateStack_S [RCBasic Doc] + + + +

function CreateStack_S()

+

+ Returns a new string stack +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/createterrainactor.html b/doc/doc_files/createterrainactor.html new file mode 100644 index 0000000..d100dea --- /dev/null +++ b/doc/doc_files/createterrainactor.html @@ -0,0 +1,29 @@ + + + + + + CreateTerrainActor [RCBasic Doc] + + + +

function CreateTerrainActor( hmap_file$ )

+

+ Returns terrain generated from a height map +

+

+ Note: Height Maps can be any supported image format +

+

Related: + CreateAnimatedActor + CreateOctreeActor + CreateSphereActor + CreateWaterActor + CreateLightActor + CreateCubeActor + CreateBillboardActor +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/createtilemap.html b/doc/doc_files/createtilemap.html new file mode 100644 index 0000000..5e0604a --- /dev/null +++ b/doc/doc_files/createtilemap.html @@ -0,0 +1,34 @@ + + + + + + CreateTileMap [RCBasic Doc] + + + +

Function CreateTileMap(tileset, widthInTiles, heightInTiles)

+

+ Returns a new tile map. +

+

+ Parameters +

+ +

Related: + CreateTileSet +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/createtileset.html b/doc/doc_files/createtileset.html new file mode 100644 index 0000000..170187a --- /dev/null +++ b/doc/doc_files/createtileset.html @@ -0,0 +1,34 @@ + + + + + + CreateTileSet [RCBasic Doc] + + + +

Function CreateTileSet(img_id, tile_w, tile_h)

+

+ Return a new Tileset +

+

+ Parameters: +

+ +

Related: + CreateTileMap +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/createwateractor.html b/doc/doc_files/createwateractor.html new file mode 100644 index 0000000..2fbf096 --- /dev/null +++ b/doc/doc_files/createwateractor.html @@ -0,0 +1,26 @@ + + + + + + CreateWaterActor [RCBasic Doc] + + + +

function CreateWaterActor( mesh, waveHeight, waveSpeed, waveLength )

+

+ Creates an actor with water properties set on a base mesh +

+

Related: + CreateAnimatedActor + CreateOctreeActor + CreateSphereActor + CreateCubeActor + CreateLightActor + CreateBillboardActor + CreateTerrainActor +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/createwaterplaneactor.html b/doc/doc_files/createwaterplaneactor.html new file mode 100644 index 0000000..f5b50f6 --- /dev/null +++ b/doc/doc_files/createwaterplaneactor.html @@ -0,0 +1,26 @@ + + + + + + CreateWaterPlaneActor [RCBasic Doc] + + + +

function CreateWaterPlaneActor( w, h )

+

+ Returns a water plane actor +

+

Related: + CreateMeshActor + CreateMeshOctreeActor + CreateCubeActor + CreateSphereActor + CreateLightActor + CreateBillboardActor + CreateTerrainActor +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/cubematrix.html b/doc/doc_files/cubematrix.html new file mode 100644 index 0000000..fd8344c --- /dev/null +++ b/doc/doc_files/cubematrix.html @@ -0,0 +1,17 @@ + + + + + + CubeMatrix [RCBasic Doc] + + + +

function CubeMatrix(mA, mB)

+

+ Returns matrix mA raised to the 3rd power +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/date.html b/doc/doc_files/date.html new file mode 100644 index 0000000..4ce196c --- /dev/null +++ b/doc/doc_files/date.html @@ -0,0 +1,17 @@ + + + + + + Date$ [RCBasic Doc] + + + +

function Date$()

+

+ Returns the date in "MM-DD-YYYY" format +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/degrees.html b/doc/doc_files/degrees.html new file mode 100644 index 0000000..8c331fc --- /dev/null +++ b/doc/doc_files/degrees.html @@ -0,0 +1,17 @@ + + + + + + Degrees [RCBasic Doc] + + + +

function Degrees(r)

+

+ Returns angle converted from radians to degrees +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/deleteactor.html b/doc/doc_files/deleteactor.html new file mode 100644 index 0000000..0695d93 --- /dev/null +++ b/doc/doc_files/deleteactor.html @@ -0,0 +1,17 @@ + + + + + + DeleteActor [RCBasic Doc] + + + +

sub DeleteActor( actor )

+

+ Removes an actor from the scene and frees its memory +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/deleteactoranimation.html b/doc/doc_files/deleteactoranimation.html new file mode 100644 index 0000000..89436d3 --- /dev/null +++ b/doc/doc_files/deleteactoranimation.html @@ -0,0 +1,17 @@ + + + + + + DeleteActorAnimation [RCBasic Doc] + + + +

sub DeleteActorAnimation(actor, animation)

+

+ Deletes an actor's animation +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/deleteconstraint.html b/doc/doc_files/deleteconstraint.html new file mode 100644 index 0000000..d4ec770 --- /dev/null +++ b/doc/doc_files/deleteconstraint.html @@ -0,0 +1,17 @@ + + + + + + deleteConstraint [RCBasic Doc] + + + +

sub deleteConstraint( constraint_id)

+

+ Removes a constraint +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/deletefont.html b/doc/doc_files/deletefont.html new file mode 100644 index 0000000..a4e5d82 --- /dev/null +++ b/doc/doc_files/deletefont.html @@ -0,0 +1,17 @@ + + + + + + DeleteFont [RCBasic Doc] + + + +

sub DeleteFont(font_id)

+

+ Frees a font from memory +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/deleteimage.html b/doc/doc_files/deleteimage.html new file mode 100644 index 0000000..43ba22b --- /dev/null +++ b/doc/doc_files/deleteimage.html @@ -0,0 +1,17 @@ + + + + + + DeleteImage [RCBasic Doc] + + + +

sub DeleteImage(img)

+

+ Removes an image from memory +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/deletematerial.html b/doc/doc_files/deletematerial.html new file mode 100644 index 0000000..7424dda --- /dev/null +++ b/doc/doc_files/deletematerial.html @@ -0,0 +1,17 @@ + + + + + + deleteMaterial [RCBasic Doc] + + + +

sub deleteMaterial( material_id)

+

+ Removes a material from memory +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/deletematrix.html b/doc/doc_files/deletematrix.html new file mode 100644 index 0000000..3cd8f16 --- /dev/null +++ b/doc/doc_files/deletematrix.html @@ -0,0 +1,17 @@ + + + + + + DeleteMatrix [RCBasic Doc] + + + +

Sub DeleteMatrix(mA)

+

+ Frees a matrix from memory +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/deletematrixcolumns.html b/doc/doc_files/deletematrixcolumns.html new file mode 100644 index 0000000..1d62c02 --- /dev/null +++ b/doc/doc_files/deletematrixcolumns.html @@ -0,0 +1,23 @@ + + + + + + DeleteMatrixColumns [RCBasic Doc] + + + +

function DeleteMatrixColumns(mA, c, num_cols)

+

+ Removes the specified columns from a matrix +

+

+ Returns false if column are outside matrix +

+

Related: + DeleteMatrixRows +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/deletematrixrows.html b/doc/doc_files/deletematrixrows.html new file mode 100644 index 0000000..9744bbd --- /dev/null +++ b/doc/doc_files/deletematrixrows.html @@ -0,0 +1,23 @@ + + + + + + DeleteMatrixRows [RCBasic Doc] + + + +

function DeleteMatrixRows(mA, r, num_rows)

+

+ Removes the specified rows from a matrix +

+

+ Returns false if rows are outside matrix +

+

Related: + DeleteMatrixColumns +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/deletemesh.html b/doc/doc_files/deletemesh.html new file mode 100644 index 0000000..97df4d5 --- /dev/null +++ b/doc/doc_files/deletemesh.html @@ -0,0 +1,17 @@ + + + + + + DeleteMesh [RCBasic Doc] + + + +

sub DeleteMesh( mesh )

+

+ Removes a mesh from memory +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/deletemusic.html b/doc/doc_files/deletemusic.html new file mode 100644 index 0000000..e4ce76d --- /dev/null +++ b/doc/doc_files/deletemusic.html @@ -0,0 +1,17 @@ + + + + + + DeleteMusic [RCBasic Doc] + + + +

sub DeleteMusic()

+

+ Removes the current music track from memory +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/deletesound.html b/doc/doc_files/deletesound.html new file mode 100644 index 0000000..030955e --- /dev/null +++ b/doc/doc_files/deletesound.html @@ -0,0 +1,17 @@ + + + + + + DeleteSound [RCBasic Doc] + + + +

sub DeleteSound(snd)

+

+ Removes a sound from memory +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/deletesprite.html b/doc/doc_files/deletesprite.html new file mode 100644 index 0000000..33b4ffd --- /dev/null +++ b/doc/doc_files/deletesprite.html @@ -0,0 +1,17 @@ + + + + + + DeleteSprite [RCBasic Doc] + + + +

Sub DeleteSprite( sprite )

+

+ Removes a sprite from memory +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/deletespriteanimation.html b/doc/doc_files/deletespriteanimation.html new file mode 100644 index 0000000..b548c7b --- /dev/null +++ b/doc/doc_files/deletespriteanimation.html @@ -0,0 +1,20 @@ + + + + + + DeleteSpriteAnimation [RCBasic Doc] + + + +

Sub DeleteSpriteAnimation(sprite, animation)

+

+ Delete's a sprite's animation +

+

Related: + CreateSpriteAnimation +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/deletestack_n.html b/doc/doc_files/deletestack_n.html new file mode 100644 index 0000000..789e58c --- /dev/null +++ b/doc/doc_files/deletestack_n.html @@ -0,0 +1,17 @@ + + + + + + DeleteStack_N [RCBasic Doc] + + + +

sub DeleteStack_N( num_stack )

+

+ Removes a number stack from memory +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/deletestack_s.html b/doc/doc_files/deletestack_s.html new file mode 100644 index 0000000..2ae26e7 --- /dev/null +++ b/doc/doc_files/deletestack_s.html @@ -0,0 +1,17 @@ + + + + + + DeleteStack_S [RCBasic Doc] + + + +

sub DeleteStack_S( str_stack )

+

+ Removes a string stack from memory +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/deletevideo.html b/doc/doc_files/deletevideo.html new file mode 100644 index 0000000..7367586 --- /dev/null +++ b/doc/doc_files/deletevideo.html @@ -0,0 +1,17 @@ + + + + + + DeleteVideo [RCBasic Doc] + + + +

sub DeleteVideo()

+

+ Removes the current video track from memory +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/determinant.html b/doc/doc_files/determinant.html new file mode 100644 index 0000000..3ea3bbc --- /dev/null +++ b/doc/doc_files/determinant.html @@ -0,0 +1,17 @@ + + + + + + Determinant [RCBasic Doc] + + + +

function Determinant(mA)

+

+ Returns the determinant of matrix mA +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/dimmatrix.html b/doc/doc_files/dimmatrix.html new file mode 100644 index 0000000..3131ae5 --- /dev/null +++ b/doc/doc_files/dimmatrix.html @@ -0,0 +1,17 @@ + + + + + + DimMatrix [RCBasic Doc] + + + +

function DimMatrix(m_rows, m_cols)

+

+ Returns a new matrix +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/dir.html b/doc/doc_files/dir.html new file mode 100644 index 0000000..bf59ec9 --- /dev/null +++ b/doc/doc_files/dir.html @@ -0,0 +1,17 @@ + + + + + + Dir$ [RCBasic Doc] + + + +

function Dir$()

+

+ Returns the current working directory +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/direxists.html b/doc/doc_files/direxists.html new file mode 100644 index 0000000..ec8a462 --- /dev/null +++ b/doc/doc_files/direxists.html @@ -0,0 +1,17 @@ + + + + + + DirExists [RCBasic Doc] + + + +

function DirExists(p$)

+

+ Returns true if a directory exists and false if not +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/dirfirst.html b/doc/doc_files/dirfirst.html new file mode 100644 index 0000000..a78ca29 --- /dev/null +++ b/doc/doc_files/dirfirst.html @@ -0,0 +1,17 @@ + + + + + + DirFirst$ [RCBasic Doc] + + + +

function DirFirst$()

+

+ Resets the directory list poll and returns the first item in the current working directory +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/dirnext.html b/doc/doc_files/dirnext.html new file mode 100644 index 0000000..7ed0d9a --- /dev/null +++ b/doc/doc_files/dirnext.html @@ -0,0 +1,20 @@ + + + + + + DirNext$ [RCBasic Doc] + + + +

function DirNext$()

+

+ Returns the next item in the directory poll +

+

Related: + DirFirst$ +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/distance2d.html b/doc/doc_files/distance2d.html new file mode 100644 index 0000000..666e16a --- /dev/null +++ b/doc/doc_files/distance2d.html @@ -0,0 +1,17 @@ + + + + + + Distance2D [RCBasic Doc] + + + +

Function Distance2D(x1, y1, x2, y2)

+

+ Returns the distance between 2 points in 2d space +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/distance3d.html b/doc/doc_files/distance3d.html new file mode 100644 index 0000000..d306216 --- /dev/null +++ b/doc/doc_files/distance3d.html @@ -0,0 +1,17 @@ + + + + + + Distance3D [RCBasic Doc] + + + +

Function Distance3D(x1, y1, z1, x2, y2, z2)

+

+ Returns the distance between 2 points in 3d space +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/drawimage.html b/doc/doc_files/drawimage.html new file mode 100644 index 0000000..1225ee6 --- /dev/null +++ b/doc/doc_files/drawimage.html @@ -0,0 +1,17 @@ + + + + + + DrawImage [RCBasic Doc] + + + +

sub DrawImage(img, x, y)

+

+ Draws an image on the active canvas +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/drawimage_blit.html b/doc/doc_files/drawimage_blit.html new file mode 100644 index 0000000..05937c5 --- /dev/null +++ b/doc/doc_files/drawimage_blit.html @@ -0,0 +1,17 @@ + + + + + + DrawImage_Blit [RCBasic Doc] + + + +

sub DrawImage_Blit(img, x, y, src_x, src_y, src_w, src_h)

+

+ Draws a portion of an image to the current canvas. +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/drawimage_blitex.html b/doc/doc_files/drawimage_blitex.html new file mode 100644 index 0000000..3827d66 --- /dev/null +++ b/doc/doc_files/drawimage_blitex.html @@ -0,0 +1,20 @@ + + + + + + DrawImage_BlitEx [RCBasic Doc] + + + +

sub DrawImage_BlitEx(slot, x, y, w, h, src_x, src_y, src_w, src_h)

+

+ Draws a portion of an image to the current canvas scaled to a given width and height. +

+

Related: + DrawImage_Blit +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/drawimage_flip.html b/doc/doc_files/drawimage_flip.html new file mode 100644 index 0000000..b7ed61e --- /dev/null +++ b/doc/doc_files/drawimage_flip.html @@ -0,0 +1,23 @@ + + + + + + DrawImage_Flip [RCBasic Doc] + + + +

sub DrawImage_Flip(slot, x, y, h, v)

+

+ Draws an image flipped horizontally or vertically. +

+

+ Note: h and v are boolean values +

+

Related: + DrawImage_FlipEx +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/drawimage_flipex.html b/doc/doc_files/drawimage_flipex.html new file mode 100644 index 0000000..dfa3595 --- /dev/null +++ b/doc/doc_files/drawimage_flipex.html @@ -0,0 +1,23 @@ + + + + + + DrawImage_FlipEx [RCBasic Doc] + + + +

sub DrawImage_FlipEx(slot, x, y, src_x, src_y, src_w, src_h, h, v)

+

+ Draws a portion of an image flipped horizontally or vertically. +

+

+ Note: h and v are boolean values +

+

Related: + DrawImage_Flip +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/drawimage_rotate.html b/doc/doc_files/drawimage_rotate.html new file mode 100644 index 0000000..363f5ef --- /dev/null +++ b/doc/doc_files/drawimage_rotate.html @@ -0,0 +1,17 @@ + + + + + + DrawImage_Rotate [RCBasic Doc] + + + +

sub DrawImage_Rotate(slot, x, y, angle)

+

+ Draws an image to the current canvas rotated by a given angle. +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/drawimage_rotateex.html b/doc/doc_files/drawimage_rotateex.html new file mode 100644 index 0000000..305bcc7 --- /dev/null +++ b/doc/doc_files/drawimage_rotateex.html @@ -0,0 +1,17 @@ + + + + + + DrawImage_RotateEx [RCBasic Doc] + + + +

sub DrawImage_RotateEx(slot, x, y, src_x, src_y, src_w, src_h, angle)

+

+ Draws a portion of an image to the current canvas rotated by a given angle. +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/drawimage_rotozoom.html b/doc/doc_files/drawimage_rotozoom.html new file mode 100644 index 0000000..a9069ae --- /dev/null +++ b/doc/doc_files/drawimage_rotozoom.html @@ -0,0 +1,17 @@ + + + + + + DrawImage_Rotozoom [RCBasic Doc] + + + +

sub DrawImage_Rotozoom(slot, x, y, angle, zx, zy)

+

+ Draws an image to the current canvas rotated and scaled +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/drawimage_rotozoomex.html b/doc/doc_files/drawimage_rotozoomex.html new file mode 100644 index 0000000..880cf70 --- /dev/null +++ b/doc/doc_files/drawimage_rotozoomex.html @@ -0,0 +1,17 @@ + + + + + + DrawImage_RotozoomEx [RCBasic Doc] + + + +

sub DrawImage_RotozoomEx(slot, x, y, src_x, src_y, src_w, src_h, angle, zx, zy)

+

+ Draws a portion of an image to the current canvas rotated and scaled +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/drawimage_zoom.html b/doc/doc_files/drawimage_zoom.html new file mode 100644 index 0000000..71dbd06 --- /dev/null +++ b/doc/doc_files/drawimage_zoom.html @@ -0,0 +1,20 @@ + + + + + + DrawImage_Zoom [RCBasic Doc] + + + +

sub DrawImage_Zoom(slot, x, y, zx, zy)

+

+ Draws an image to the current canvas scaled by a given factor +

+

Related: + DrawImage_ZoomEx +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/drawimage_zoomex.html b/doc/doc_files/drawimage_zoomex.html new file mode 100644 index 0000000..49eb29b --- /dev/null +++ b/doc/doc_files/drawimage_zoomex.html @@ -0,0 +1,20 @@ + + + + + + DrawImage_ZoomEx [RCBasic Doc] + + + +

sub DrawImage_ZoomEx(slot, x, y, src_x, src_y, src_w, src_h, zx, zy)

+

+ Draws a portion of an Image to the current canvas scaled by a given factor +

+

Related: + DrawImage_Zoom +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/drawtext.html b/doc/doc_files/drawtext.html new file mode 100644 index 0000000..f48e389 --- /dev/null +++ b/doc/doc_files/drawtext.html @@ -0,0 +1,17 @@ + + + + + + DrawText [RCBasic Doc] + + + +

sub DrawText(txt$, x, y)

+

+ Draws text to the current canvas +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/drawtilemap.html b/doc/doc_files/drawtilemap.html new file mode 100644 index 0000000..460bc56 --- /dev/null +++ b/doc/doc_files/drawtilemap.html @@ -0,0 +1,37 @@ + + + + + + DrawTileMap [RCBasic Doc] + + + +

Sub DrawTileMap(tilemap, x, y, w, h, offset_x, offset_y)

+

+ Draws a tile map +

+

+ Note: Can only be drawn on a regular 2D canvas +

+

+ Parameters: +

+ +

+ + + \ No newline at end of file diff --git a/doc/doc_files/easter.html b/doc/doc_files/easter.html new file mode 100644 index 0000000..eea5013 --- /dev/null +++ b/doc/doc_files/easter.html @@ -0,0 +1,17 @@ + + + + + + Easter$ [RCBasic Doc] + + + +

function Easter$(year)

+

+ Returns easter of the year passed to it. +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/ellipse.html b/doc/doc_files/ellipse.html new file mode 100644 index 0000000..a0ceccf --- /dev/null +++ b/doc/doc_files/ellipse.html @@ -0,0 +1,17 @@ + + + + + + Ellipse [RCBasic Doc] + + + +

sub Ellipse(x,y,rx,ry)

+

+ Draws an ellipse on the current canvas. +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/ellipsefill.html b/doc/doc_files/ellipsefill.html new file mode 100644 index 0000000..c1d01d5 --- /dev/null +++ b/doc/doc_files/ellipsefill.html @@ -0,0 +1,17 @@ + + + + + + EllipseFill [RCBasic Doc] + + + +

sub EllipseFill(x,y,rx,ry)

+

+ Draws a filled ellipse on the current canvas. +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/env.html b/doc/doc_files/env.html new file mode 100644 index 0000000..f6c9178 --- /dev/null +++ b/doc/doc_files/env.html @@ -0,0 +1,20 @@ + + + + + + Env$ [RCBasic Doc] + + + +

function Env$(v$)

+

+ Returns the value of the environment variable passed to it. +

+

Related: + SetEnv +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/eof.html b/doc/doc_files/eof.html new file mode 100644 index 0000000..32196f9 --- /dev/null +++ b/doc/doc_files/eof.html @@ -0,0 +1,17 @@ + + + + + + EOF [RCBasic Doc] + + + +

function EOF(stream)

+

+ Returns true when end of file is reached +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/escape_char.html b/doc/doc_files/escape_char.html new file mode 100644 index 0000000..ed382e6 --- /dev/null +++ b/doc/doc_files/escape_char.html @@ -0,0 +1,58 @@ + + + + + + RC BASIC Escape Characters + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ESCAPE CHARACTERDESCRIPTION
\\INSERTS A "\" INTO A STRING
\nINSERTS A NEW-LINE INTO A STRING
\bINSERTS A BACKSPACE INTO A STRING
\"   |   \qINSERTS A QUOTATION MARK INTO A STRING
\tINSERTS A TAB INTO A STRING
\0INSERTS A NULL CHARACTER INTO A STRING
\aINSERTS AN ALERT BELL INTO A STRING
\vINSERTS A VERTICAL TAB INTO A STRING
\fINSERTS A FORM FEED INTO A STRING
\rINSERTS A CARRIAGE RETURN
+ + diff --git a/doc/doc_files/evaljs.html b/doc/doc_files/evaljs.html new file mode 100644 index 0000000..1aece3f --- /dev/null +++ b/doc/doc_files/evaljs.html @@ -0,0 +1,23 @@ + + + + + + EvalJS$ [RCBasic Doc] + + + +

Function EvalJS$(js_code$) 'Only useable in Emscripten

+

+ Runs javascript code +

+

+ Returns the return value of the javascript code +

+

+ NOTE: ONLY WORKS IN WEB PORT +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/exp.html b/doc/doc_files/exp.html new file mode 100644 index 0000000..2939f85 --- /dev/null +++ b/doc/doc_files/exp.html @@ -0,0 +1,17 @@ + + + + + + Exp [RCBasic Doc] + + + +

function Exp(n)

+

+ Returns the exponential function of a number. +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/fademusicin.html b/doc/doc_files/fademusicin.html new file mode 100644 index 0000000..75dd72d --- /dev/null +++ b/doc/doc_files/fademusicin.html @@ -0,0 +1,17 @@ + + + + + + FadeMusicIn [RCBasic Doc] + + + +

sub FadeMusicIn(fade_time, loops)

+

+ Fades music in +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/fademusicout.html b/doc/doc_files/fademusicout.html new file mode 100644 index 0000000..6caa49a --- /dev/null +++ b/doc/doc_files/fademusicout.html @@ -0,0 +1,17 @@ + + + + + + FadeMusicOut [RCBasic Doc] + + + +

sub FadeMusicOut(fade_time)

+

+ Fades music out +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/fileexists.html b/doc/doc_files/fileexists.html new file mode 100644 index 0000000..2e68cd1 --- /dev/null +++ b/doc/doc_files/fileexists.html @@ -0,0 +1,17 @@ + + + + + + FileExists [RCBasic Doc] + + + +

function FileExists(fileName$)

+

+ Returns true if a file exists +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/filelength.html b/doc/doc_files/filelength.html new file mode 100644 index 0000000..d7bcb5a --- /dev/null +++ b/doc/doc_files/filelength.html @@ -0,0 +1,17 @@ + + + + + + FileLength [RCBasic Doc] + + + +

function FileLength(fileName$)

+

+ Returns the size of a file in bytes. +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/fillmatrix.html b/doc/doc_files/fillmatrix.html new file mode 100644 index 0000000..d2bf669 --- /dev/null +++ b/doc/doc_files/fillmatrix.html @@ -0,0 +1,17 @@ + + + + + + FillMatrix [RCBasic Doc] + + + +

sub FillMatrix(mA, v)

+

+ Fills matrix with the given value +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/fillmatrixcolumns.html b/doc/doc_files/fillmatrixcolumns.html new file mode 100644 index 0000000..7af2be5 --- /dev/null +++ b/doc/doc_files/fillmatrixcolumns.html @@ -0,0 +1,17 @@ + + + + + + FillMatrixColumns [RCBasic Doc] + + + +

function FillMatrixColumns(mA, c, num_cols, v)

+

+ Fills matrix columns with the given value starting at the given column +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/fillmatrixrows.html b/doc/doc_files/fillmatrixrows.html new file mode 100644 index 0000000..1f2d4cb --- /dev/null +++ b/doc/doc_files/fillmatrixrows.html @@ -0,0 +1,17 @@ + + + + + + FillMatrixRows [RCBasic Doc] + + + +

function FillMatrixRows(mA, r, num_rows, v)

+

+ Fills matrix rows with the given value starting at the given row +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/filltile.html b/doc/doc_files/filltile.html new file mode 100644 index 0000000..b42757e --- /dev/null +++ b/doc/doc_files/filltile.html @@ -0,0 +1,17 @@ + + + + + + FillTile [RCBasic Doc] + + + +

Sub FillTile(tilemap, tile, x, y, widthInTiles, heightInTiles)

+

+ Fills an area of a tile map with a specified tile +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/flashwindow.html b/doc/doc_files/flashwindow.html new file mode 100644 index 0000000..a1df02e --- /dev/null +++ b/doc/doc_files/flashwindow.html @@ -0,0 +1,34 @@ + + + + + + FlashWindow [RCBasic Doc] + + + +

function FlashWindow( flag )

+

+ Flashes a window to specify an alert +

+

+ Returns 0 on success and a negative number on failure +

+

+ Possible flag values: +

+ +

+ + + \ No newline at end of file diff --git a/doc/doc_files/floodfill.html b/doc/doc_files/floodfill.html new file mode 100644 index 0000000..ac60db3 --- /dev/null +++ b/doc/doc_files/floodfill.html @@ -0,0 +1,17 @@ + + + + + + FloodFill [RCBasic Doc] + + + +

sub FloodFill(x,y)

+

+ Fills a closed shape in with the current draw color +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/fontexists.html b/doc/doc_files/fontexists.html new file mode 100644 index 0000000..fa30d61 --- /dev/null +++ b/doc/doc_files/fontexists.html @@ -0,0 +1,17 @@ + + + + + + FontExists [RCBasic Doc] + + + +

Function FontExists(fnt_id)

+

+ Returns True if the specified font id is associated with a loaded font +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/fprint.html b/doc/doc_files/fprint.html new file mode 100644 index 0000000..28a21af --- /dev/null +++ b/doc/doc_files/fprint.html @@ -0,0 +1,17 @@ + + + + + + Fprint [RCBasic Doc] + + + +

sub Fprint(txt$)

+

+ Outputs text to the console +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/fps.html b/doc/doc_files/fps.html new file mode 100644 index 0000000..4636022 --- /dev/null +++ b/doc/doc_files/fps.html @@ -0,0 +1,17 @@ + + + + + + FPS [RCBasic Doc] + + + +

function FPS()

+

+ Returns the number of frames being rendered per second +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/frac.html b/doc/doc_files/frac.html new file mode 100644 index 0000000..31297cd --- /dev/null +++ b/doc/doc_files/frac.html @@ -0,0 +1,17 @@ + + + + + + Frac [RCBasic Doc] + + + +

function Frac(n)

+

+ Returns the decimal portion of a number. +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/func_sub.html b/doc/doc_files/func_sub.html new file mode 100644 index 0000000..721896f --- /dev/null +++ b/doc/doc_files/func_sub.html @@ -0,0 +1,161 @@ + + + + + + RCBasic Functions and Sub Routines [RCBasic Doc] + + + +

FUNCTIONS AND SUB ROUTINES

+

+ Functions and Sub Routines are blocks of code that can be executed any where in your program. +

+

+ The biggest difference between Functions and Sub Routines is that Functions can return a value. Basically Functions and be used as a string or number value in an expression. RCBASIC has several built-in functions to perform different task such as compute square roots, get the time, etc. Functions are either numbers or strings just like variables and arrays. As such, functions can be used anywhere a variable or array can be used. Look at the following: +

+

+ Dim x[2] 
+ x[0] = Sqrt(25) 
+ x[1] = Sqrt(36) 
+ Print "THE SQUARE ROOT OF 25 IS "; x[0] 
+ Print "THE SQUARE ROOT OF 36 IS "; x[1] 
+

+

+ The above code creates a number array called X with 2 elements in it. It stores the square root of 25 in the first index and stores the square root of 36 in the second index. It then outputs both values to the console. The output should look like this: +

+

+ THE SQUARE ROOT OF 25 IS 5 THE SQUARE ROOT OF 36 IS 6 +

+

+ String functions can be used in a string expression just like number functions can be used in a number expression. Look at the following code: +

+

+ B$ = Mid$("HELLO WORLD"02) 
+ Print "THE FIRST TWO CHARACTERS IN HELLO WORLD ARE ";B$ 
+

+

+ The above code creates a string variable called B and stores 2 characters starting from position 0 in the string HELLO WORLD. It then outputs the value to the console. The output should look like the following: +

+

+ THE FIRST TWO CHARACTERS IN HELLO WORLD ARE HE +

+

+ Sub Routines can execute code in other parts of your program just like a function. However Sub Routines cannot return values and cannot be used in expressions. So why would you want to use a Sub Routine over a function? Well Sub Routines have less over head since it does not have to internally push a value onto the stack like a function does. So in cases where you do not need to return a value you should use a Sub Routine. RC BASIC has several built-in Sub Routines to perform task where a return value is not necessary. Look at the following: +

+

+ FPrint("test") 
+

+

+ FPrint is a Sub Routine that outputs text to the console. Since FPrint doesn't perform calculations of any kind it did not need to be implemented as a Function. +

+

+ In addition to the built-in Functions and Sub Routines RCBASIC also allows programmers to build there own Functions and Sub Routines. You do this using the FUNCTION or SUB keywords. +

+

+ Function  MyFunc(a, b) 
+    c = a + b 
+    Return c 
+ End Function 
+

+

+ The above code creates a function called MyFunc which takes in two arguments: a and b. To use this function you would call it like this: +

+

+ MyFunc(34) 
+

+

+ The code above will pass 3 and 4 to the variables A and B in MYFUNC respectively. The function creates a variable called C and sets it equal to the sum of 3 + 4. It then returns C. So the function equals 7. Since this is a number function you could store the value in a number variable or use PRINT to output the value to the console. +

+

+ To make a string function you simply add $ to the end of the function name when you create it just like with variables and arrays. +

+

+ Function MyString$ ( G$ ) 
+    Return "YOU ENTERED " + G$ 
+ End Function 
+   
+ Print MyString("SOMETHING") 
+

+

+ The above code should output the following: +

+

+ YOU ENTERED SOMETHING +

+

+ Functions can also return a UDT(User Defined Type) as well. Look at the following: +

+

+ Type test_type 
+    Dim a$ 
+    Dim b 
+ End Type 
+   
+ Function test(a$, b) As test_type 
+    Dim ret_val As test_type 
+    ret_val.a = a 
+    ret_val.b = b 
+    Return ret_val 
+ End Function 
+   
+ Dim myVar as test_type 
+   
+ myVar = test("hello"42) 
+

+

+ You can also have a UDT as a parameter in a function: +

+

+ Function 2(as test_type, j) 
+    Return 0 
+ End Function 
+

+

+ Sub Routines are created using the SUB keyword. Look at the following: +

+

+ Sub MySub ( ) 
+    For i = 1 To 5 
+       Print i 
+    Next 
+ End Sub 
+   
+ MySub ( ) 
+

+

+ The code above creates a Sub Routine called MYSUB which uses a FOR loop to output the numbers 1 to 5 to the console. +

+

+ Functions and Sub Routines pass variables by value by default. Look at the following: +

+

+ Sub  MySub ( a ) 
+    a = 5 
+ End Sub 
+   
+ n = 0 
+   
+ MySub ( n ) 
+ Print n 
+

+

+ In the above code the Sub Routine has a variable called A as an argument. It sets A equal to 5. Then we create a variable called N outside of the Sub Routine and set N equal to 0. N is passed as an argument to MYSUB. Then N is output to the console. This will output 0 to the console. That is because only the value of N is passed to MYSUB so MYSUB is not able to change N itself. In order to allow MYSUB to change N we must have MYSUB accept an argument by Reference. To do this we will use the BYREF keyword. +

+

+ Sub MySub ( ByRef a ) 
+    a = 5 
+ End Sub 
+   
+ n = 0 
+   
+ MySub ( n ) 
+ Print n 
+

+

+ The above code is the same as the previous example except that now we use the BYREF keyword to change a to a reference rather than a value. This means the when we pass the variable N to MYSUB, instead of the value stored in N being used as A, whatever we do to A will be done to N directly. This example will output 5 to the console. +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getaccel.html b/doc/doc_files/getaccel.html new file mode 100644 index 0000000..8dc1245 --- /dev/null +++ b/doc/doc_files/getaccel.html @@ -0,0 +1,17 @@ + + + + + + GetAccel [RCBasic Doc] + + + +

sub GetAccel(accel_num, ByRef x, ByRef y, ByRef z)

+

+ Gets the axis values for an accelerometer. +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getactoraabb.html b/doc/doc_files/getactoraabb.html new file mode 100644 index 0000000..731d36b --- /dev/null +++ b/doc/doc_files/getactoraabb.html @@ -0,0 +1,17 @@ + + + + + + getActorAABB [RCBasic Doc] + + + +

sub getActorAABB( actor, ByRef min_x, ByRef min_y, ByRef min_z, ByRef max_x, ByRef max_y, ByRef max_z)

+

+ Gets the bounding box for an actor. +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getactorangulardamping.html b/doc/doc_files/getactorangulardamping.html new file mode 100644 index 0000000..b3c9a36 --- /dev/null +++ b/doc/doc_files/getactorangulardamping.html @@ -0,0 +1,22 @@ + + + + + + GetActorAngularDamping [RCBasic Doc] + + + +

function GetActorAngularDamping( actor)

+

+ Returns the amount of angular damping set on the actor +

+

Related: + SetActorDamping + ApplyActorDamping + GetActorLinearDamping +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getactorangularfactor.html b/doc/doc_files/getactorangularfactor.html new file mode 100644 index 0000000..d8d307e --- /dev/null +++ b/doc/doc_files/getactorangularfactor.html @@ -0,0 +1,22 @@ + + + + + + getActorAngularFactor [RCBasic Doc] + + + +

sub getActorAngularFactor( actor, ByRef x, ByRef y, ByRef z)

+

+ Returns the angular factor set on an actor +

+

Related: + SetActorAngularFactor + GetActorLinearFactor + SetActorLinearFactor +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getactorangularsleepthreshold.html b/doc/doc_files/getactorangularsleepthreshold.html new file mode 100644 index 0000000..79b82a2 --- /dev/null +++ b/doc/doc_files/getactorangularsleepthreshold.html @@ -0,0 +1,21 @@ + + + + + + GetActorAngularSleepThreshold [RCBasic Doc] + + + +

function GetActorAngularSleepThreshold( actor)

+

+ Returns the Angular deactivation threshold for the actor +

+

Related: + SetActorSleepThresholds + GetActorLinearSleepThreshold +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getactorangularvelocitylocal.html b/doc/doc_files/getactorangularvelocitylocal.html new file mode 100644 index 0000000..4983a8e --- /dev/null +++ b/doc/doc_files/getactorangularvelocitylocal.html @@ -0,0 +1,22 @@ + + + + + + getActorAngularVelocityLocal [RCBasic Doc] + + + +

sub getActorAngularVelocityLocal( actor, ByRef x, ByRef y, ByRef z)

+

+ Gets an actor's Angular Velocity +

+

Related: + GetActorAngularVelocityWorld + SetActorAngularVelocityLocal + SetActorAngularVelocityWorld +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getactorangularvelocityworld.html b/doc/doc_files/getactorangularvelocityworld.html new file mode 100644 index 0000000..897f6fd --- /dev/null +++ b/doc/doc_files/getactorangularvelocityworld.html @@ -0,0 +1,22 @@ + + + + + + getActorAngularVelocityWorld [RCBasic Doc] + + + +

sub getActorAngularVelocityWorld( actor, ByRef x, ByRef y, ByRef z)

+

+ Gets an actor's Angular Velocity +

+

Related: + GetActorAngularVelocityLocal + SetActorAngularVelocityLocal + SetActorAngularVelocityWorld +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getactoranimationendframe.html b/doc/doc_files/getactoranimationendframe.html new file mode 100644 index 0000000..8f983c1 --- /dev/null +++ b/doc/doc_files/getactoranimationendframe.html @@ -0,0 +1,20 @@ + + + + + + GetActorAnimationEndFrame [RCBasic Doc] + + + +

Function GetActorAnimationEndFrame(actor, animation)

+

+ Returns the last frame in an actor's animation +

+

Related: + SetActorAnimationFrames +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getactoranimationspeed.html b/doc/doc_files/getactoranimationspeed.html new file mode 100644 index 0000000..2356721 --- /dev/null +++ b/doc/doc_files/getactoranimationspeed.html @@ -0,0 +1,20 @@ + + + + + + GetActorAnimationSpeed [RCBasic Doc] + + + +

function GetActorAnimationSpeed( actor, animation )

+

+ Returns actor's animation speed in frames per second +

+

Related: + SetActorAnimationSpeed +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getactoranimationstartframe.html b/doc/doc_files/getactoranimationstartframe.html new file mode 100644 index 0000000..cdde7d3 --- /dev/null +++ b/doc/doc_files/getactoranimationstartframe.html @@ -0,0 +1,20 @@ + + + + + + GetActorAnimationStartFrame [RCBasic Doc] + + + +

Function GetActorAnimationStartFrame(actor, animation)

+

+ Returns the first frame in an actor's animation +

+

Related: + SetActorAnimationFrames +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getactorautoculling.html b/doc/doc_files/getactorautoculling.html new file mode 100644 index 0000000..98d2667 --- /dev/null +++ b/doc/doc_files/getactorautoculling.html @@ -0,0 +1,40 @@ + + + + + + GetActorAutoCulling [RCBasic Doc] + + + +

function GetActorAutoCulling( actor )

+

+ Returns the automatic culling state for an actor +

+

+ Possible Culling States +

+ +

Related: + SetActorAutoCulling +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getactorcollision.html b/doc/doc_files/getactorcollision.html new file mode 100644 index 0000000..39726d8 --- /dev/null +++ b/doc/doc_files/getactorcollision.html @@ -0,0 +1,20 @@ + + + + + + GetActorCollision [RCBasic Doc] + + + +

function GetActorCollision(actor1, actor2)

+

+ Returns true if 2 actors collide +

+

+ Note: This function will work with solid and non solid actors +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getactorcollisionshape.html b/doc/doc_files/getactorcollisionshape.html new file mode 100644 index 0000000..e920a80 --- /dev/null +++ b/doc/doc_files/getactorcollisionshape.html @@ -0,0 +1,49 @@ + + + + + + GetActorCollisionShape [RCBasic Doc] + + + +

function GetActorCollisionShape(actor)

+

+ Returns the actor's collision shape +

+

+ Possible values: +

+ +

Related: + SetActorCollisionShape +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getactorcomposition.html b/doc/doc_files/getactorcomposition.html new file mode 100644 index 0000000..10b7361 --- /dev/null +++ b/doc/doc_files/getactorcomposition.html @@ -0,0 +1,17 @@ + + + + + + getActorCOMPosition [RCBasic Doc] + + + +

sub getActorCOMPosition( actor, ByRef x, ByRef y, ByRef z)

+

+ Gets an actor's center of mass position. This is useful for setting the origin of constraints. +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getactorcurrentanimation.html b/doc/doc_files/getactorcurrentanimation.html new file mode 100644 index 0000000..e1b09e7 --- /dev/null +++ b/doc/doc_files/getactorcurrentanimation.html @@ -0,0 +1,24 @@ + + + + + + GetActorCurrentAnimation [RCBasic Doc] + + + +

Function GetActorCurrentAnimation(actor)

+

+ Returns the current animation set on an actor +

+

+ Note: Current animation will be 0 if the actor's frame was set with SetActorFrame() +

+

Related: + SetActorAnimation + SetActorFrame +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getactorcurrentframe.html b/doc/doc_files/getactorcurrentframe.html new file mode 100644 index 0000000..b9e3af6 --- /dev/null +++ b/doc/doc_files/getactorcurrentframe.html @@ -0,0 +1,17 @@ + + + + + + GetActorCurrentFrame [RCBasic Doc] + + + +

function GetActorCurrentFrame( actor )

+

+ Returns an actor's current frame of animation +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getactorendframe.html b/doc/doc_files/getactorendframe.html new file mode 100644 index 0000000..2922a77 --- /dev/null +++ b/doc/doc_files/getactorendframe.html @@ -0,0 +1,17 @@ + + + + + + GetActorEndFrame [RCBasic Doc] + + + +

function GetActorEndFrame( actor )

+

+ Returns the last frame of an actor's animation +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getactorframe.html b/doc/doc_files/getactorframe.html new file mode 100644 index 0000000..6ac58ee --- /dev/null +++ b/doc/doc_files/getactorframe.html @@ -0,0 +1,21 @@ + + + + + + GetActorFrame [RCBasic Doc] + + + +

function GetActorFrame(actor)

+

+ Returns the current frame number an actor is currently rendering +

+

Related: + SetActorFrame + GetActorAnimationFrame +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getactorgravity.html b/doc/doc_files/getactorgravity.html new file mode 100644 index 0000000..b437ee9 --- /dev/null +++ b/doc/doc_files/getactorgravity.html @@ -0,0 +1,20 @@ + + + + + + GetActorGravity [RCBasic Doc] + + + +

sub GetActorGravity( actor, ByRef x, ByRef y, ByRef z )

+

+ Gets the gravity of an actor along each access. +

+

Related: + SetActorGravity +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getactorinverseinertiadiaglocal.html b/doc/doc_files/getactorinverseinertiadiaglocal.html new file mode 100644 index 0000000..b3c1c4d --- /dev/null +++ b/doc/doc_files/getactorinverseinertiadiaglocal.html @@ -0,0 +1,17 @@ + + + + + + getActorInverseInertiaDiagLocal [RCBasic Doc] + + + +

sub getActorInverseInertiaDiagLocal( actor, ByRef x, ByRef y, ByRef z)

+

+ Gets the inverse of the inertia tensor's diagonal components in the local space. This is used to compute how the actor reacts to rotational forces (torques) applied to it. +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getactorinversemass.html b/doc/doc_files/getactorinversemass.html new file mode 100644 index 0000000..71e2b9d --- /dev/null +++ b/doc/doc_files/getactorinversemass.html @@ -0,0 +1,20 @@ + + + + + + getActorInverseMass [RCBasic Doc] + + + +

function getActorInverseMass( actor)

+

+ Returns an actor's inverse mass +

+

Related: + SetActorMassProperties +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getactorlineardamping.html b/doc/doc_files/getactorlineardamping.html new file mode 100644 index 0000000..bb9851a --- /dev/null +++ b/doc/doc_files/getactorlineardamping.html @@ -0,0 +1,21 @@ + + + + + + GetActorLinearDamping [RCBasic Doc] + + + +

function GetActorLinearDamping( actor)

+

+ Return's an actor's linear damping +

+

Related: + SetActorDamping + GetActorAngularDamping +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getactorlinearfactor.html b/doc/doc_files/getactorlinearfactor.html new file mode 100644 index 0000000..7f5f7bd --- /dev/null +++ b/doc/doc_files/getactorlinearfactor.html @@ -0,0 +1,22 @@ + + + + + + GetActorLinearFactor [RCBasic Doc] + + + +

sub GetActorLinearFactor( actor, ByRef x, ByRef y, ByRef z)

+

+ Gets an actor's linear factor +

+

Related: + SetActorLinearFactor + GetActorAngularFactor + SetActorAngularFactor +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getactorlinearsleepthreshold.html b/doc/doc_files/getactorlinearsleepthreshold.html new file mode 100644 index 0000000..9676069 --- /dev/null +++ b/doc/doc_files/getactorlinearsleepthreshold.html @@ -0,0 +1,21 @@ + + + + + + GetActorLinearSleepThreshold [RCBasic Doc] + + + +

function GetActorLinearSleepThreshold( actor)

+

+ Returns the linear deactivation threshold for the actor +

+

Related: + SetActorSleepThresholds + GetActorAngularSleepThreshold +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getactorlinearvelocitylocal.html b/doc/doc_files/getactorlinearvelocitylocal.html new file mode 100644 index 0000000..70e34d1 --- /dev/null +++ b/doc/doc_files/getactorlinearvelocitylocal.html @@ -0,0 +1,21 @@ + + + + + + GetActorLinearVelocityLocal [RCBasic Doc] + + + +

sub GetActorLinearVelocityLocal( actor, ByRef x, ByRef y, ByRef z)

+

+ Gets actor's linear velocity +

+

Related: + SetActorLinearVelocityLocal + SetActorLinearVelocityWorld +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getactorlinearvelocityworld.html b/doc/doc_files/getactorlinearvelocityworld.html new file mode 100644 index 0000000..12fef83 --- /dev/null +++ b/doc/doc_files/getactorlinearvelocityworld.html @@ -0,0 +1,21 @@ + + + + + + getActorLinearVelocityWorld [RCBasic Doc] + + + +

sub getActorLinearVelocityWorld( actor, ByRef x, ByRef y, ByRef z)

+

+ Gets actor's linear velocity +

+

Related: + SetActorLinearVelocityLocal + SetActorLinearVelocityWorld +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getactorlocalinertia.html b/doc/doc_files/getactorlocalinertia.html new file mode 100644 index 0000000..a55428b --- /dev/null +++ b/doc/doc_files/getactorlocalinertia.html @@ -0,0 +1,17 @@ + + + + + + GetActorLocalInertia [RCBasic Doc] + + + +

sub GetActorLocalInertia( actor, ByRef x, ByRef y, ByRef z)

+

+ Gets the local inertia tensor of an actor. The inertia tensor describes how an actor resists rotational motion depending on its mass distribution relative to its center of mass. +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getactorlocalpointvelocity.html b/doc/doc_files/getactorlocalpointvelocity.html new file mode 100644 index 0000000..ae085aa --- /dev/null +++ b/doc/doc_files/getactorlocalpointvelocity.html @@ -0,0 +1,17 @@ + + + + + + getActorLocalPointVelocity [RCBasic Doc] + + + +

sub getActorLocalPointVelocity( actor, rel_x, rel_y, rel_z, ByRef x, ByRef y, ByRef z)

+

+ Gets the linear velocity of a specific point on an actor, given its position in the actor's local coordinate space. This is useful for determining how fast and in what direction a particular point on the actor is moving, accounting for both the body's linear velocity and its rotational motion (angular velocity). +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getactormaterial.html b/doc/doc_files/getactormaterial.html new file mode 100644 index 0000000..f7d3f92 --- /dev/null +++ b/doc/doc_files/getactormaterial.html @@ -0,0 +1,20 @@ + + + + + + getActorMaterial [RCBasic Doc] + + + +

function getActorMaterial( actor, material_num)

+

+ Returns an actor's material id. +

+

+ Actor's can have multiple materials but generally you want material 0 for most Actor's. +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getactormaterialcount.html b/doc/doc_files/getactormaterialcount.html new file mode 100644 index 0000000..c01310d --- /dev/null +++ b/doc/doc_files/getactormaterialcount.html @@ -0,0 +1,17 @@ + + + + + + getActorMaterialCount [RCBasic Doc] + + + +

function getActorMaterialCount( actor)

+

+ Returns the number of materials for an actor. +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getactormaterialflag.html b/doc/doc_files/getactormaterialflag.html new file mode 100644 index 0000000..37298d0 --- /dev/null +++ b/doc/doc_files/getactormaterialflag.html @@ -0,0 +1,85 @@ + + + + + + getActorMaterialFlag [RCBasic Doc] + + + +

function getActorMaterialFlag( actor, material, flag)

+

+ Returns the value of the specified material flag +

+

+ Possible values for flag: +

+ +

Related: + GetMaterialFlag +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getactormaterialtype.html b/doc/doc_files/getactormaterialtype.html new file mode 100644 index 0000000..ae96d78 --- /dev/null +++ b/doc/doc_files/getactormaterialtype.html @@ -0,0 +1,102 @@ + + + + + + GetActorMaterialType [RCBasic Doc] + + + +

function GetActorMaterialType( actor, material )

+

+ Returns the material type of an actor material +

+

+ Possible material types +

+ +

Related: + SetActorMaterialType + GetMaterialType + SetMaterialType +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getactorposition.html b/doc/doc_files/getactorposition.html new file mode 100644 index 0000000..f4d8fa5 --- /dev/null +++ b/doc/doc_files/getactorposition.html @@ -0,0 +1,20 @@ + + + + + + GetActorPosition [RCBasic Doc] + + + +

sub GetActorPosition( actor, ByRef x, ByRef y, ByRef z )

+

+ Gets the actors position +

+

Related: + SetActorPosition +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getactorrotation.html b/doc/doc_files/getactorrotation.html new file mode 100644 index 0000000..84d704a --- /dev/null +++ b/doc/doc_files/getactorrotation.html @@ -0,0 +1,20 @@ + + + + + + GetActorRotation [RCBasic Doc] + + + +

sub GetActorRotation( actor, ByRef x, ByRef y, ByRef z )

+

+ Gets the actors rotation on each axis +

+

Related: + SetActorRotation +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getactorrotationq.html b/doc/doc_files/getactorrotationq.html new file mode 100644 index 0000000..f79bb42 --- /dev/null +++ b/doc/doc_files/getactorrotationq.html @@ -0,0 +1,24 @@ + + + + + + GetActorRotationQ [RCBasic Doc] + + + +

sub GetActorRotationQ( actor, ByRef x, ByRef y, ByRef z, ByRef w)

+

+ Gets the actors rotation as a quaternion. +

+

+ Note: This is useful for calculations that require quaternion but most developers should just use GetActorRotation() +

+

Related: + GetActorRotation + SetActorRotation +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getactorscale.html b/doc/doc_files/getactorscale.html new file mode 100644 index 0000000..505640a --- /dev/null +++ b/doc/doc_files/getactorscale.html @@ -0,0 +1,20 @@ + + + + + + GetActorScale [RCBasic Doc] + + + +

sub GetActorScale( actor, ByRef x, ByRef y, ByRef z )

+

+ Gets an actor's scale +

+

Related: + SetActorScale +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getactorstartframe.html b/doc/doc_files/getactorstartframe.html new file mode 100644 index 0000000..66c338d --- /dev/null +++ b/doc/doc_files/getactorstartframe.html @@ -0,0 +1,17 @@ + + + + + + GetActorStartFrame [RCBasic Doc] + + + +

function GetActorStartFrame( actor )

+

+ Returns the start frame of an actor's animation +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getactortotalforce.html b/doc/doc_files/getactortotalforce.html new file mode 100644 index 0000000..a62fbe7 --- /dev/null +++ b/doc/doc_files/getactortotalforce.html @@ -0,0 +1,20 @@ + + + + + + GetActorTotalForce [RCBasic Doc] + + + +

sub GetActorTotalForce( actor, ByRef x, ByRef y, ByRef z)

+

+ Gets the total net force currently acting on an actor. This force is the sum of all external forces applied to the actor at a given point in time, including forces like gravity, applied forces, and other interactions such as contact or collision forces. +

+

Related: + GetActorTotalTorque +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getactortotaltorque.html b/doc/doc_files/getactortotaltorque.html new file mode 100644 index 0000000..fe938cd --- /dev/null +++ b/doc/doc_files/getactortotaltorque.html @@ -0,0 +1,20 @@ + + + + + + GetActorTotalTorque [RCBasic Doc] + + + +

sub GetActorTotalTorque( actor, ByRef x, ByRef y, ByRef z)

+

+ Gets the total net torque currently acting on an actor. Torque represents the rotational equivalent of force, describing how different forces applied to the actor cause it to rotate. The total torque is the sum of all external torques acting on the actor, which determine how the actor will rotate or change its angular velocity. +

+

Related: + GetTotalForces +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getactortransform.html b/doc/doc_files/getactortransform.html new file mode 100644 index 0000000..dc777a7 --- /dev/null +++ b/doc/doc_files/getactortransform.html @@ -0,0 +1,17 @@ + + + + + + GetActorTransform [RCBasic Doc] + + + +

sub GetActorTransform( actor, matrix )

+

+ Stores the actors absolute transformation in the given matrix +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getactortransitiontime.html b/doc/doc_files/getactortransitiontime.html new file mode 100644 index 0000000..c01ae02 --- /dev/null +++ b/doc/doc_files/getactortransitiontime.html @@ -0,0 +1,25 @@ + + + + + + GetActorTransitionTime [RCBasic Doc] + + + +

function GetActorTransitionTime( actor )

+

+ Returns the total transition time of an actor transitioning between animations +

+

+ Note: Time returned is in seconds +

+

Related: + StartActorTransition + StopActorTransition + ActorIsInTransition +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getan8scenename.html b/doc/doc_files/getan8scenename.html new file mode 100644 index 0000000..db39c07 --- /dev/null +++ b/doc/doc_files/getan8scenename.html @@ -0,0 +1,17 @@ + + + + + + GetAN8SceneName$ [RCBasic Doc] + + + +

Function GetAN8SceneName$(an8_project, scene_num)

+

+ Returns the name of a scene in an an8 project +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getbilinearfilter.html b/doc/doc_files/getbilinearfilter.html new file mode 100644 index 0000000..0705660 --- /dev/null +++ b/doc/doc_files/getbilinearfilter.html @@ -0,0 +1,20 @@ + + + + + + GetBilinearFilter [RCBasic Doc] + + + +

function GetBilinearFilter()

+

+ Returns true if bilinear filtering is enabled +

+

Related: + SetBilinearFilter +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getblendmode.html b/doc/doc_files/getblendmode.html new file mode 100644 index 0000000..bf79e94 --- /dev/null +++ b/doc/doc_files/getblendmode.html @@ -0,0 +1,58 @@ + + + + + + GetBlendMode [RCBasic Doc] + + + +

function GetBlendMode( )

+

+ Returns the current blend mode +

+

+ Note: Only applies to 2D image drawing commands +

+

+ Possible Blend Modes +

+ +

Related: + SetBlendMode +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getcameraaspectratio.html b/doc/doc_files/getcameraaspectratio.html new file mode 100644 index 0000000..a3a71a9 --- /dev/null +++ b/doc/doc_files/getcameraaspectratio.html @@ -0,0 +1,20 @@ + + + + + + GetCameraAspectRatio [RCBasic Doc] + + + +

function GetCameraAspectRatio( )

+

+ Returns the camera aspect ratio for the active canvas +

+

Related: + SetCameraAspectRatio +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getcamerafarvalue.html b/doc/doc_files/getcamerafarvalue.html new file mode 100644 index 0000000..2b4b533 --- /dev/null +++ b/doc/doc_files/getcamerafarvalue.html @@ -0,0 +1,20 @@ + + + + + + GetCameraFarValue [RCBasic Doc] + + + +

function GetCameraFarValue( )

+

+ Returns the far plane of the camera on the active canvas +

+

Related: + GetCameraNearValue +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getcamerafov.html b/doc/doc_files/getcamerafov.html new file mode 100644 index 0000000..8615370 --- /dev/null +++ b/doc/doc_files/getcamerafov.html @@ -0,0 +1,17 @@ + + + + + + GetCameraFOV [RCBasic Doc] + + + +

function GetCameraFOV( )

+

+ Returns the field of view of the camera on the active canvas +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getcameranearvalue.html b/doc/doc_files/getcameranearvalue.html new file mode 100644 index 0000000..dbce0a2 --- /dev/null +++ b/doc/doc_files/getcameranearvalue.html @@ -0,0 +1,20 @@ + + + + + + GetCameraNearValue [RCBasic Doc] + + + +

function GetCameraNearValue( )

+

+ Returns the near plane of the camera on the active canvas +

+

Related: + GetCameraFarValue +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getcameraposition.html b/doc/doc_files/getcameraposition.html new file mode 100644 index 0000000..a36f7d7 --- /dev/null +++ b/doc/doc_files/getcameraposition.html @@ -0,0 +1,21 @@ + + + + + + GetCameraPosition [RCBasic Doc] + + + +

sub GetCameraPosition(ByRef x, ByRef y, ByRef z)

+

+ Gets the position of the camera +

+

Related: + SetCameraPosition + TranslateCamera +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getcamerarotation.html b/doc/doc_files/getcamerarotation.html new file mode 100644 index 0000000..7820621 --- /dev/null +++ b/doc/doc_files/getcamerarotation.html @@ -0,0 +1,21 @@ + + + + + + GetCameraRotation [RCBasic Doc] + + + +

sub GetCameraRotation(ByRef x, ByRef y, ByRef z)

+

+ Gets the rotation of the camera on each axis +

+

Related: + SetCameraRotation + RotateCamera +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getcanvasalpha.html b/doc/doc_files/getcanvasalpha.html new file mode 100644 index 0000000..c8a8d9a --- /dev/null +++ b/doc/doc_files/getcanvasalpha.html @@ -0,0 +1,20 @@ + + + + + + GetCanvasAlpha [RCBasic Doc] + + + +

function GetCanvasAlpha(c_num)

+

+ Returns the alpha blend value of a canvas +

+

Related: + SetCanvasAlpha +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getcanvascolormod.html b/doc/doc_files/getcanvascolormod.html new file mode 100644 index 0000000..706be0a --- /dev/null +++ b/doc/doc_files/getcanvascolormod.html @@ -0,0 +1,20 @@ + + + + + + GetCanvasColorMod [RCBasic Doc] + + + +

function GetCanvasColorMod(c_num)

+

+ Returns the color modulation of a canvas +

+

Related: + SetCanvasColorMod +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getcanvasoffset.html b/doc/doc_files/getcanvasoffset.html new file mode 100644 index 0000000..12119ea --- /dev/null +++ b/doc/doc_files/getcanvasoffset.html @@ -0,0 +1,20 @@ + + + + + + GetCanvasOffset [RCBasic Doc] + + + +

sub GetCanvasOffset(c_num, byref x, byref y)

+

+ Returns view offset of a canvas +

+

Related: + SetCanvasOffset +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getcanvassize.html b/doc/doc_files/getcanvassize.html new file mode 100644 index 0000000..4d9f59e --- /dev/null +++ b/doc/doc_files/getcanvassize.html @@ -0,0 +1,17 @@ + + + + + + GetCanvasSize [RCBasic Doc] + + + +

sub GetCanvasSize(c_num, byref w, byref h)

+

+ Gets the size of a canvas +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getcanvasviewport.html b/doc/doc_files/getcanvasviewport.html new file mode 100644 index 0000000..72831b7 --- /dev/null +++ b/doc/doc_files/getcanvasviewport.html @@ -0,0 +1,21 @@ + + + + + + GetCanvasViewport [RCBasic Doc] + + + +

sub GetCanvasViewport(c_num, byref x, byref y, byref w, byref h)

+

+ Gets the position and size of a canvas viewport +

+

Related: + OpenCanvas + SetCanvasViewport +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getcanvasz.html b/doc/doc_files/getcanvasz.html new file mode 100644 index 0000000..ceb0b39 --- /dev/null +++ b/doc/doc_files/getcanvasz.html @@ -0,0 +1,23 @@ + + + + + + GetCanvasZ [RCBasic Doc] + + + +

function GetCanvasZ(c_num)

+

+ Returns the Canvas Z Order. +

+

+ Note: Canvases with a lower Z order are drawn first and those with higher values will be drawn on top +

+

Related: + SetCanvasZ +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getchannelvolume.html b/doc/doc_files/getchannelvolume.html new file mode 100644 index 0000000..db50d41 --- /dev/null +++ b/doc/doc_files/getchannelvolume.html @@ -0,0 +1,17 @@ + + + + + + GetChannelVolume [RCBasic Doc] + + + +

function GetChannelVolume(channel)

+

+ Returns the volume of the audio on a channel +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getcirclelineintersection.html b/doc/doc_files/getcirclelineintersection.html new file mode 100644 index 0000000..74a0ab2 --- /dev/null +++ b/doc/doc_files/getcirclelineintersection.html @@ -0,0 +1,20 @@ + + + + + + GetCircleLineIntersection [RCBasic Doc] + + + +

function GetCircleLineIntersection(circle_x, circle_y, radius, x1, y1, x2, y2, ByRef ix1, ByRef iy1, ByRef ix2, ByRef iy2)

+

+ Calculates the points where a circle and line intersect and stores the intersection points in (ix1, iy1) and (ix2, iy2) +

+

+ NOTE: This function returns 0 if there is no intersection and 1 or 2 if there is 1 or 2 intersection points. If it only returns 1 then only (ix1, iy1) will be set. +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getclipboardtext.html b/doc/doc_files/getclipboardtext.html new file mode 100644 index 0000000..58412a4 --- /dev/null +++ b/doc/doc_files/getclipboardtext.html @@ -0,0 +1,17 @@ + + + + + + GetClipboardText$ [RCBasic Doc] + + + +

function GetClipboardText$( )

+

+ Returns the clipboard text. +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getconeanglepoint.html b/doc/doc_files/getconeanglepoint.html new file mode 100644 index 0000000..6a5b905 --- /dev/null +++ b/doc/doc_files/getconeanglepoint.html @@ -0,0 +1,17 @@ + + + + + + getConeAnglePoint [RCBasic Doc] + + + +

sub getConeAnglePoint( constraint_id, angle, c_len, ByRef x, ByRef y, ByRef z)

+

+ Computes or retrieves a point based on a given angle relative to the constraint’s twist axis. +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getconebiasfactor.html b/doc/doc_files/getconebiasfactor.html new file mode 100644 index 0000000..478bc1b --- /dev/null +++ b/doc/doc_files/getconebiasfactor.html @@ -0,0 +1,17 @@ + + + + + + getConeBiasFactor [RCBasic Doc] + + + +

function getConeBiasFactor( constraint_id)

+

+ Returns the bias factor used to correct constraint violations (such as small positional or angular errors) during the simulation. The bias factor helps ensure that the constrained actors return to their intended positions or orientations over time by applying corrective forces or impulses. +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getconedamping.html b/doc/doc_files/getconedamping.html new file mode 100644 index 0000000..ef38697 --- /dev/null +++ b/doc/doc_files/getconedamping.html @@ -0,0 +1,17 @@ + + + + + + getConeDamping [RCBasic Doc] + + + +

function getConeDamping( constraint_id)

+

+ Returns the damping factor applied to the constraint. Damping is used to reduce the amount of oscillation or unwanted movement (such as excessive rotation or swinging) around the constrained actor's axes. +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getconefixthresh.html b/doc/doc_files/getconefixthresh.html new file mode 100644 index 0000000..b022227 --- /dev/null +++ b/doc/doc_files/getconefixthresh.html @@ -0,0 +1,23 @@ + + + + + + getConeFixThresh [RCBasic Doc] + + + +

function getConeFixThresh( constraint_id)

+

+ Returns the fix threshold value associated with that constraint. This threshold is used to control how the constraint behaves when the angle of the rotation between the actors approaches the limits defined by the cone twist constraint. +

+

+ The fix threshold defines a limit or tolerance for how closely the angle between the two actors can approach the constraint's limits before corrective actions are taken. When the angular motion exceeds this threshold, the constraint applies corrective forces to bring the motion back within the allowed range. +

+

Related: + SetConeFixThresh +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getconelimit.html b/doc/doc_files/getconelimit.html new file mode 100644 index 0000000..54fa5d1 --- /dev/null +++ b/doc/doc_files/getconelimit.html @@ -0,0 +1,34 @@ + + + + + + getConeLimit [RCBasic Doc] + + + +

function getConeLimit( constraint_id, limit_index)

+

+ Returns the angular limit associated with a specific degree of freedom in the cone constraint. This limit defines the range of motion allowed around a given axis (twist, swing1, or swing2) for the constrained actors. +

+

+ limitIndex is an integer that indicates which limit to retrieve. It typically takes values corresponding to the type of limit: +

+ +

+ Returns value is the maximum angle or range allowed for the specified degree of freedom (twist, swing1, or swing2) +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getconesolveswinglimit.html b/doc/doc_files/getconesolveswinglimit.html new file mode 100644 index 0000000..ad38bce --- /dev/null +++ b/doc/doc_files/getconesolveswinglimit.html @@ -0,0 +1,20 @@ + + + + + + getConeSolveSwingLimit [RCBasic Doc] + + + +

function getConeSolveSwingLimit( constraint_id)

+

+ Returns whether the swing limit of the constraint is currently being enforced during the simulation. +

+

+ The swing limit defines the boundary within which the connected actors can swing. When the bodies approach or exceed this limit, the physics engine enforces a constraint to prevent further motion. If the swing limit is exceeded during simulation, corrective forces are applied to bring the actors back within the allowed range. +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getconesolvetwistlimit.html b/doc/doc_files/getconesolvetwistlimit.html new file mode 100644 index 0000000..36d8535 --- /dev/null +++ b/doc/doc_files/getconesolvetwistlimit.html @@ -0,0 +1,20 @@ + + + + + + getConeSolveTwistLimit [RCBasic Doc] + + + +

function getConeSolveTwistLimit( constraint_id)

+

+ Returns whether the twist limit is currently being enforced during the simulation. +

+

+ The twist limit controls how much the connected actors can rotate around the central axis of the joint (the "twist" axis). When the actors rotate beyond this allowed limit, the physics engine applies corrective forces to keep the rotation within the defined twist range. +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getconeswingspan1.html b/doc/doc_files/getconeswingspan1.html new file mode 100644 index 0000000..3a3f8fe --- /dev/null +++ b/doc/doc_files/getconeswingspan1.html @@ -0,0 +1,23 @@ + + + + + + getConeSwingSpan1 [RCBasic Doc] + + + +

function getConeSwingSpan1( constraint_id)

+

+ Returns the maximum allowed rotation angle (or "span") for the first swing axis. This swing axis is one of the two orthogonal axes around which the constrained actors are allowed to swing, forming a cone-shaped range of motion. +

+

+ There are two swing spans, swing span 1 and swing span 2, corresponding to the maximum allowable swing angles around each of the two swing axes. +

+

Related: + GetConeSwingSpan2 +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getconeswingspan2.html b/doc/doc_files/getconeswingspan2.html new file mode 100644 index 0000000..0387226 --- /dev/null +++ b/doc/doc_files/getconeswingspan2.html @@ -0,0 +1,23 @@ + + + + + + getConeSwingSpan2 [RCBasic Doc] + + + +

function getConeSwingSpan2( constraint_id)

+

+ Returns the maximum allowed rotation angle (or "span") for the second swing axis. This swing axis is one of the two orthogonal axes around which the constrained actors are allowed to swing, forming a cone-shaped range of motion. +

+

+ There are two swing spans, swing span 1 and swing span 2, corresponding to the maximum allowable swing angles around each of the two swing axes. +

+

Related: + GetConeSwingSpan1 +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getconetwistangle.html b/doc/doc_files/getconetwistangle.html new file mode 100644 index 0000000..df774fd --- /dev/null +++ b/doc/doc_files/getconetwistangle.html @@ -0,0 +1,28 @@ + + + + + + getConeTwistAngle [RCBasic Doc] + + + +

function getConeTwistAngle( constraint_id)

+

+ Returns the current twist angle between the two actors connected by the constraint +

+ +

+ + + \ No newline at end of file diff --git a/doc/doc_files/getconetwistlimitsign.html b/doc/doc_files/getconetwistlimitsign.html new file mode 100644 index 0000000..0300b03 --- /dev/null +++ b/doc/doc_files/getconetwistlimitsign.html @@ -0,0 +1,25 @@ + + + + + + getConeTwistLimitSign [RCBasic Doc] + + + +

function getConeTwistLimitSign( constraint_id)

+

+ Returns the sign of the twist limit, which indicates the direction of the twist limit enforcement around the twist axis. +

+ +

+ + + \ No newline at end of file diff --git a/doc/doc_files/getconetwistspan.html b/doc/doc_files/getconetwistspan.html new file mode 100644 index 0000000..8ea78b9 --- /dev/null +++ b/doc/doc_files/getconetwistspan.html @@ -0,0 +1,17 @@ + + + + + + getConeTwistSpan [RCBasic Doc] + + + +

function getConeTwistSpan( constraint_id)

+

+ Returns the maximum allowed twist angle for the constraint, which determines how far the connected bodies can rotate around the twist axis before the constraint enforces limits. +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getconstraintactora.html b/doc/doc_files/getconstraintactora.html new file mode 100644 index 0000000..4eb3aa2 --- /dev/null +++ b/doc/doc_files/getconstraintactora.html @@ -0,0 +1,17 @@ + + + + + + getConstraintActorA [RCBasic Doc] + + + +

function getConstraintActorA( constraint_id)

+

+ Returns the first actor in a constraint +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getconstraintactorb.html b/doc/doc_files/getconstraintactorb.html new file mode 100644 index 0000000..41c5436 --- /dev/null +++ b/doc/doc_files/getconstraintactorb.html @@ -0,0 +1,17 @@ + + + + + + getConstraintActorB [RCBasic Doc] + + + +

function getConstraintActorB( constraint_id)

+

+ Returns the second actor in a constraint +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getconstraintaframe.html b/doc/doc_files/getconstraintaframe.html new file mode 100644 index 0000000..0adfb04 --- /dev/null +++ b/doc/doc_files/getconstraintaframe.html @@ -0,0 +1,23 @@ + + + + + + GetConstraintAFrame [RCBasic Doc] + + + +

function GetConstraintAFrame( constraint_id, mA)

+

+ Stores the transform of the first actor in a constraint in mA +

+

+ Note: Only applies to cone and hinge constraints +

+

Related: + GetConstraintBFrame +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getconstraintangularonly.html b/doc/doc_files/getconstraintangularonly.html new file mode 100644 index 0000000..fbdc3f3 --- /dev/null +++ b/doc/doc_files/getconstraintangularonly.html @@ -0,0 +1,23 @@ + + + + + + getConstraintAngularOnly [RCBasic Doc] + + + +

function getConstraintAngularOnly( constraint_id)

+

+ Returns true if the hinge constraint is set to limit only angular motion while allowing unrestricted linear (translational) motion. +

+

+ Note: Applies to Cone and Hinge constraints +

+

Related: + SetConstraintAngularOnly +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getconstraintappliedimpulse.html b/doc/doc_files/getconstraintappliedimpulse.html new file mode 100644 index 0000000..1cd03f1 --- /dev/null +++ b/doc/doc_files/getconstraintappliedimpulse.html @@ -0,0 +1,17 @@ + + + + + + getConstraintAppliedImpulse [RCBasic Doc] + + + +

function getConstraintAppliedImpulse( constraint_id)

+

+ Returns the impulse applied to a constraint during the last simulation step. This impulse is the force integrated over a small time step (impulse = force × time) and is applied to resolve the constraint and maintain its behavior, such as keeping two objects connected or restricting movement. +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getconstraintbframe.html b/doc/doc_files/getconstraintbframe.html new file mode 100644 index 0000000..3762259 --- /dev/null +++ b/doc/doc_files/getconstraintbframe.html @@ -0,0 +1,23 @@ + + + + + + GetConstraintBFrame [RCBasic Doc] + + + +

function GetConstraintBFrame( constraint_id, mA)

+

+ Stores the transform of the second actor in a constraint in mA +

+

+ Note: Only applies to cone and hinge constraints +

+

Related: + GetConstraintAFrame +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getconstraintbreakingimpulsethreshold.html b/doc/doc_files/getconstraintbreakingimpulsethreshold.html new file mode 100644 index 0000000..4a857de --- /dev/null +++ b/doc/doc_files/getconstraintbreakingimpulsethreshold.html @@ -0,0 +1,20 @@ + + + + + + getConstraintBreakingImpulseThreshold [RCBasic Doc] + + + +

function getConstraintBreakingImpulseThreshold( constraint_id)

+

+ Returns the breaking impulse threshold for a given constraint. The breaking impulse threshold defines the maximum force (impulse) a constraint can withstand before it "breaks," meaning that the constraint will be deactivated and no longer enforce its rules. +

+

Related: + SetConstraintBreakingImpulseThreshold +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getconstraintfixedactor.html b/doc/doc_files/getconstraintfixedactor.html new file mode 100644 index 0000000..7bcee13 --- /dev/null +++ b/doc/doc_files/getconstraintfixedactor.html @@ -0,0 +1,17 @@ + + + + + + getConstraintFixedActor [RCBasic Doc] + + + +

function getConstraintFixedActor( constraint_id)

+

+ Returns the actor that is associated with a specific constraint. This is primarily applicable in constraints that involve one actor being constrained to another or to a static point in the simulation. +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getconstraintframeoffseta.html b/doc/doc_files/getconstraintframeoffseta.html new file mode 100644 index 0000000..c3f63fe --- /dev/null +++ b/doc/doc_files/getconstraintframeoffseta.html @@ -0,0 +1,20 @@ + + + + + + getConstraintFrameOffsetA [RCBasic Doc] + + + +

sub getConstraintFrameOffsetA( constraint_id, ByRef x, ByRef y, ByRef z, ByRef rx, ByRef ry, ByRef rz)

+

+ Gets the frame offset for actor A associated with a particular constraint. This frame offset defines the position and orientation of actor A relative to the constraint's anchor point. +

+

Related: + GetConstraintFrameOffsetB +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getconstraintframeoffsetb.html b/doc/doc_files/getconstraintframeoffsetb.html new file mode 100644 index 0000000..c8d92c5 --- /dev/null +++ b/doc/doc_files/getconstraintframeoffsetb.html @@ -0,0 +1,20 @@ + + + + + + getConstraintFrameOffsetB [RCBasic Doc] + + + +

sub getConstraintFrameOffsetB( constraint_id, ByRef x, ByRef y, ByRef z, ByRef rx, ByRef ry, ByRef rz)

+

+ Gets the frame offset for actor B associated with a particular constraint. This frame offset defines the position and orientation of actor B relative to the constraint's anchor point. +

+

Related: + GetConstraintFrameOffsetA +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getconstraintlimitsoftness.html b/doc/doc_files/getconstraintlimitsoftness.html new file mode 100644 index 0000000..08649a7 --- /dev/null +++ b/doc/doc_files/getconstraintlimitsoftness.html @@ -0,0 +1,32 @@ + + + + + + getConstraintLimitSoftness [RCBasic Doc] + + + +

function getConstraintLimitSoftness( constraint_id)

+

+ Returns the softness parameter associated with the limits of the constraint. This softness affects how the constraint behaves when the angular motion of the connected actors approaches their defined limits. +

+ +

Related: + SetConstraintSoftnessDirAng + SetConstraintSoftnessDirLin + SetConstraintSoftnessLimAng + SetConstraintSoftnessLimLin + SetConstraintSoftnessOrthoAng +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getconstraintsolveriterations.html b/doc/doc_files/getconstraintsolveriterations.html new file mode 100644 index 0000000..ca94897 --- /dev/null +++ b/doc/doc_files/getconstraintsolveriterations.html @@ -0,0 +1,17 @@ + + + + + + getConstraintSolverIterations [RCBasic Doc] + + + +

function getConstraintSolverIterations( constraint_id)

+

+ Returns the value for the number of solver iterations that have been overridden for a specific constraint or actor. Solver iterations refer to the number of times the physics engine solves for constraint forces during each simulation step. +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getdesktopdisplaymode.html b/doc/doc_files/getdesktopdisplaymode.html new file mode 100644 index 0000000..99d7a60 --- /dev/null +++ b/doc/doc_files/getdesktopdisplaymode.html @@ -0,0 +1,28 @@ + + + + + + GetDesktopDisplayMode [RCBasic Doc] + + + +

Sub GetDesktopDisplayMode(index, ByRef w, ByRef h, ByRef freq)

+

+ Gets the resolution and refresh rate of a display +

+ +

+ + + \ No newline at end of file diff --git a/doc/doc_files/getglobalmouse.html b/doc/doc_files/getglobalmouse.html new file mode 100644 index 0000000..b309a3d --- /dev/null +++ b/doc/doc_files/getglobalmouse.html @@ -0,0 +1,17 @@ + + + + + + GetGlobalMouse [RCBasic Doc] + + + +

sub GetGlobalMouse(ByRef x, ByRef y, ByRef mb1, ByRef mb2, ByRef mb3)

+

+ Gets the global mouse position and button state +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getgravity3d.html b/doc/doc_files/getgravity3d.html new file mode 100644 index 0000000..4d9e61b --- /dev/null +++ b/doc/doc_files/getgravity3d.html @@ -0,0 +1,20 @@ + + + + + + GetGravity3D [RCBasic Doc] + + + +

sub GetGravity3D(ByRef x, ByRef y, ByRef z)

+

+ Gets the world gravity +

+

Related: + SetGravity3D +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getgyro.html b/doc/doc_files/getgyro.html new file mode 100644 index 0000000..3a94566 --- /dev/null +++ b/doc/doc_files/getgyro.html @@ -0,0 +1,17 @@ + + + + + + GetGyro [RCBasic Doc] + + + +

sub GetGyro(gyro_num, ByRef x, ByRef y, ByRef z)

+

+ Gets the values of a Gyro sensor +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/gethingeangle.html b/doc/doc_files/gethingeangle.html new file mode 100644 index 0000000..266b555 --- /dev/null +++ b/doc/doc_files/gethingeangle.html @@ -0,0 +1,17 @@ + + + + + + getHingeAngle [RCBasic Doc] + + + +

function getHingeAngle( constraint_id)

+

+ Returns the angle of a hinge constraint +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/gethingeangleex.html b/doc/doc_files/gethingeangleex.html new file mode 100644 index 0000000..9b57eab --- /dev/null +++ b/doc/doc_files/gethingeangleex.html @@ -0,0 +1,17 @@ + + + + + + getHingeAngleEx [RCBasic Doc] + + + +

function getHingeAngleEx( constraint_id, t_matrixA, t_matrixB)

+

+ Returns the transforms of the 2 actors in a hinge constraint +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/gethingelimitbiasfactor.html b/doc/doc_files/gethingelimitbiasfactor.html new file mode 100644 index 0000000..ea7f555 --- /dev/null +++ b/doc/doc_files/gethingelimitbiasfactor.html @@ -0,0 +1,20 @@ + + + + + + getHingeLimitBiasFactor [RCBasic Doc] + + + +

function getHingeLimitBiasFactor( constraint_id)

+

+ Returns the bias factor associated with the limits of the hinge constraint. This bias factor affects how the constraint corrects errors when the angular position of the constrained actors approaches or exceeds the defined limits. +

+

+ The bias factor is a parameter that influences how aggressively the constraint corrects the position when the angular motion reaches the limits. A higher bias factor results in a stronger corrective force, helping to pull the constrained bodies back within their limits more quickly. +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/gethingelimitrelaxationfactor.html b/doc/doc_files/gethingelimitrelaxationfactor.html new file mode 100644 index 0000000..dad9624 --- /dev/null +++ b/doc/doc_files/gethingelimitrelaxationfactor.html @@ -0,0 +1,14 @@ + + + + + + getHingeLimitRelaxationFactor [RCBasic Doc] + + + +

function getHingeLimitRelaxationFactor( constraint_id)

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/gethingelimitsign.html b/doc/doc_files/gethingelimitsign.html new file mode 100644 index 0000000..f2b8d70 --- /dev/null +++ b/doc/doc_files/gethingelimitsign.html @@ -0,0 +1,23 @@ + + + + + + getHingeLimitSign [RCBasic Doc] + + + +

function getHingeLimitSign( constraint_id)

+

+ Returns the limit sign for the hinge constraint. This value indicates the direction in which the hinge limit is applied, which can be crucial for understanding the behavior of the hinge in relation to its limits. +

+

+ The limit sign determines whether the hinge's limits are applied in a positive or negative direction. It essentially indicates the side of the limit that is considered "active" during the simulation. +

+

Related: + SetHingeLimit +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/gethingesolvelimit.html b/doc/doc_files/gethingesolvelimit.html new file mode 100644 index 0000000..ae09066 --- /dev/null +++ b/doc/doc_files/gethingesolvelimit.html @@ -0,0 +1,20 @@ + + + + + + getHingeSolveLimit [RCBasic Doc] + + + +

function getHingeSolveLimit( constraint_id)

+

+ Checks whether the hinge has reached or exceeded its angular limit during the simulation. It returns a boolean or an integer value that indicates whether the current angular position is within the constraint's angular limits or if corrective forces need to be applied. +

+

+ The "solve limit" refers to whether the current angular position is close to or outside the defined angular limits. If the constraint detects that the hinge is at the limit, it enters a solving state, where it applies corrective forces to keep the rotation within the allowed range. +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getimagealpha.html b/doc/doc_files/getimagealpha.html new file mode 100644 index 0000000..f411c76 --- /dev/null +++ b/doc/doc_files/getimagealpha.html @@ -0,0 +1,17 @@ + + + + + + GetImageAlpha [RCBasic Doc] + + + +

function GetImageAlpha( img_id )

+

+ Returns the alpha blend value of an image +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getimagecolormod.html b/doc/doc_files/getimagecolormod.html new file mode 100644 index 0000000..37be61e --- /dev/null +++ b/doc/doc_files/getimagecolormod.html @@ -0,0 +1,17 @@ + + + + + + GetImageColorMod [RCBasic Doc] + + + +

function GetImageColorMod(img)

+

+ Returns the color modulation of an image +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getimagesize.html b/doc/doc_files/getimagesize.html new file mode 100644 index 0000000..19288b5 --- /dev/null +++ b/doc/doc_files/getimagesize.html @@ -0,0 +1,17 @@ + + + + + + GetImageSize [RCBasic Doc] + + + +

sub GetImageSize(slot, byref w, byref h)

+

+ Gets the Size of an image +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getjoytrackball.html b/doc/doc_files/getjoytrackball.html new file mode 100644 index 0000000..41455b1 --- /dev/null +++ b/doc/doc_files/getjoytrackball.html @@ -0,0 +1,17 @@ + + + + + + GetJoyTrackBall [RCBasic Doc] + + + +

sub GetJoyTrackBall(joy_num, ball, byref dx, byref dy)

+

+ Gets the axis values of a track ball +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getlightambientcolor.html b/doc/doc_files/getlightambientcolor.html new file mode 100644 index 0000000..8f12635 --- /dev/null +++ b/doc/doc_files/getlightambientcolor.html @@ -0,0 +1,17 @@ + + + + + + GetLightAmbientColor [RCBasic Doc] + + + +

function GetLightAmbientColor( actor )

+

+ Returns the ambient color of a light +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getlightattenuation.html b/doc/doc_files/getlightattenuation.html new file mode 100644 index 0000000..49d93ca --- /dev/null +++ b/doc/doc_files/getlightattenuation.html @@ -0,0 +1,17 @@ + + + + + + GetLightAttenuation [RCBasic Doc] + + + +

sub GetLightAttenuation( actor, ByRef constant, ByRef linear, ByRef quadratic)

+

+ Gets the strength of the light +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getlightdiffusecolor.html b/doc/doc_files/getlightdiffusecolor.html new file mode 100644 index 0000000..60ded82 --- /dev/null +++ b/doc/doc_files/getlightdiffusecolor.html @@ -0,0 +1,17 @@ + + + + + + GetLightDiffuseColor [RCBasic Doc] + + + +

function GetLightDiffuseColor( actor )

+

+ Returns the diffuse color of the light +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getlightfalloff.html b/doc/doc_files/getlightfalloff.html new file mode 100644 index 0000000..f2c918f --- /dev/null +++ b/doc/doc_files/getlightfalloff.html @@ -0,0 +1,17 @@ + + + + + + GetLightFalloff [RCBasic Doc] + + + +

function GetLightFalloff( actor )

+

+ Returns the strength decrease between the inner and outer cone of a light +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getlightinnercone.html b/doc/doc_files/getlightinnercone.html new file mode 100644 index 0000000..e239a92 --- /dev/null +++ b/doc/doc_files/getlightinnercone.html @@ -0,0 +1,17 @@ + + + + + + GetLightInnerCone [RCBasic Doc] + + + +

function GetLightInnerCone( actor )

+

+ Returns the inner cone of a spot light +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getlightoutercone.html b/doc/doc_files/getlightoutercone.html new file mode 100644 index 0000000..1ed16fb --- /dev/null +++ b/doc/doc_files/getlightoutercone.html @@ -0,0 +1,17 @@ + + + + + + GetLightOuterCone [RCBasic Doc] + + + +

function GetLightOuterCone( actor )

+

+ Returns the outer cone of a spot light +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getlightradius.html b/doc/doc_files/getlightradius.html new file mode 100644 index 0000000..a5a1b6e --- /dev/null +++ b/doc/doc_files/getlightradius.html @@ -0,0 +1,17 @@ + + + + + + getLightRadius [RCBasic Doc] + + + +

function getLightRadius( actor )

+

+ Returns the radius of the light +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getlightspecularcolor.html b/doc/doc_files/getlightspecularcolor.html new file mode 100644 index 0000000..af93eb7 --- /dev/null +++ b/doc/doc_files/getlightspecularcolor.html @@ -0,0 +1,17 @@ + + + + + + GetLightSpecularColor [RCBasic Doc] + + + +

function GetLightSpecularColor( actor )

+

+ Returns the specular color of a light +

+

+ + + \ No newline at end of file diff --git a/doc/doc_files/getlighttype.html b/doc/doc_files/getlighttype.html new file mode 100644 index 0000000..bc32006 --- /dev/null +++ b/doc/doc_files/getlighttype.html @@ -0,0 +1,34 @@ + + + + + + GetLightType [RCBasic Doc] + + + +

function GetLightType( actor )

+

+ Returns the type of light +

+

+ Returns -1 if it does not have a type (ie. its not a light) +

+

+ Possible Light Types +

+