Difference between revisions of "LlGroundNormal"

From Second Life Wiki
Jump to navigation Jump to search
(for the love of god, test it before your post it, it is not a unit vector.)
m (formatted spec)
Line 7: Line 7:
|return_text=that is the ground normal from the current [[llGetPos|position]] + '''offset'''.
|return_text=that is the ground normal from the current [[llGetPos|position]] + '''offset'''.
|spec=This function is defined as:
|spec=This function is defined as:
<pre>
<lsl>
vector llGroundNormal(vector offset)
vector llGroundNormal(vector offset)
{
{
Line 13: Line 13:
     return <slope.x, slope.y, 1.0>;
     return <slope.x, slope.y, 1.0>;
}
}
</pre>
</lsl>
|caveats
|caveats
|constants
|constants

Revision as of 22:16, 19 February 2008

Summary

Function: vector llGroundNormal( vector offset );

Returns a vector that is the ground normal from the current position + offset.

• vector offset

The requested position needs to be in the same sim.

Specification

This function is defined as: <lsl> vector llGroundNormal(vector offset) {

   vector slope = llGroundSlope(offset);
   return <slope.x, slope.y, 1.0>;

} </lsl>

Examples

See Also

Functions

•  llGround Gets the ground height
•  llGroundContour Gets the ground contour
•  llGroundSlope Gets the ground slope

Deep Notes

Search JIRA for related Issues

Signature

function vector llGroundNormal( vector offset );