Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions generated/lua_keywords_pretty.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5175,6 +5175,8 @@ export type rotation = quaternion</string>
</map>
<key>PI</key>
<map>
<key>deprecated</key>
<boolean>true</boolean>
<key>tooltip</key>
<string>Mathematical constant pi, representing the number of radians in a half circle (semi-circle). When used in sensor functions, it specifies a full sphere scan.</string>
<key>type</key>
Expand All @@ -5193,6 +5195,8 @@ export type rotation = quaternion</string>
</map>
<key>PI_BY_TWO</key>
<map>
<key>deprecated</key>
<boolean>true</boolean>
<key>tooltip</key>
<string>Mathematical constant pi/2, representing the number of radians in a quarter circle. When used in sensor functions, it specifies a hemisphere scan.</string>
<key>type</key>
Expand Down Expand Up @@ -8173,6 +8177,8 @@ float falloff – ranges from 0.01 to 2.0
</map>
<key>SQRT2</key>
<map>
<key>deprecated</key>
<boolean>true</boolean>
<key>tooltip</key>
<string>Mathematical constant representing the square root of 2.</string>
<key>type</key>
Expand Down Expand Up @@ -8841,6 +8847,8 @@ float falloff – ranges from 0.01 to 2.0
</map>
<key>TWO_PI</key>
<map>
<key>deprecated</key>
<boolean>true</boolean>
<key>tooltip</key>
<string>Mathematical constant pi*2, representing the number of radians in a full circle.</string>
<key>type</key>
Expand Down
12 changes: 12 additions & 0 deletions lsl_definitions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4032,6 +4032,9 @@ constants:
specifies a full sphere scan.
type: float
value: '3.14159265'
slua-deprecated:
use: math.pi
reason: Double precision.
PING_PONG:
member-of: [TextureAnimMode]
tooltip: Used with texture animation functions to cause the animation to play
Expand All @@ -4044,6 +4047,9 @@ constants:
scan.
type: float
value: '1.57079633'
slua-deprecated:
use: math.pi/2
reason: Double precision.
PRIM_ALLOW_UNSIT:
member-of: [PrimParam, PrimParamGet]
tooltip: Prim parameter for allowing or restricting manual standing for avatars
Expand Down Expand Up @@ -6932,6 +6938,9 @@ constants:
tooltip: Mathematical constant representing the square root of 2.
type: float
value: '1.41421356'
slua-deprecated:
use: math.sqrt2
reason: Double precision.
STATUS_BLOCK_GRAB:
member-of: [ObjectStatusParam]
tooltip: Status flag (default FALSE) that blocks click-and-drag grab movements
Expand Down Expand Up @@ -7435,6 +7444,9 @@ constants:
tooltip: Mathematical constant pi*2, representing the number of radians in a full circle.
type: float
value: '6.28318530'
slua-deprecated:
use: math.tau
reason: Double precision.
TYPE_FLOAT:
member-of: [ListEntryType]
slua-deprecated:
Expand Down
Loading