Panda3D
|
#include <pandadoc.hpp>
Public Member Functions | |
__init__ (const HeightfieldTesselator) | |
__init__ (str name) | |
NodePath | generate () |
Generates a tree of nodes that represents the heightfield. | |
double | getElevation (double x, double y) |
Fetches the elevation at (x,y), where the input coordinate is specified in pixels. | |
PNMImage | heightfield () |
Returns a reference to the heightfield (a PNMImage) contained inside the HeightfieldTesselator. | |
setFocalPoint (int x, int y) | |
Sets the focal point. | |
bool | setHeightfield (const Filename filename, PNMFileType type) |
Loads the specified greyscale image file into the heightfield. | |
setHorizontalScale (double h) | |
Sets the horizontal scale. | |
setMaxTriangles (int n) | |
Sets the max triangles per geom. | |
setPolyCount (int n) | |
Sets the polygon-count target. | |
setVerticalScale (double v) | |
Sets the vertical scale. | |
setVisibilityRadius (int r) | |
Sets the visibility radius. | |
![]() | |
__init__ (const Namable) | |
__init__ (str initial_name) | |
clearName () | |
Resets the Namable's name to empty. | |
str | getName () |
bool | hasName () |
Returns true if the Namable has a nonempty name set, false if the name is empty. | |
output (Ostream out) | |
Outputs the Namable. | |
setName (str name) | |
Additional Inherited Members | |
![]() | |
static TypeHandle | getClassType () |
![]() | |
const String | name |
__init__ | ( | const HeightfieldTesselator | ) |
__init__ | ( | str | name | ) |
NodePath generate | ( | ) |
Generates a tree of nodes that represents the heightfield.
This can be reparented into the scene.
double getElevation | ( | double | x, |
double | y ) |
Fetches the elevation at (x,y), where the input coordinate is specified in pixels.
This ignores the current tesselation level and instead provides an accurate number. Linear blending is used for non-integral coordinates.
PNMImage heightfield | ( | ) |
Returns a reference to the heightfield (a PNMImage) contained inside the HeightfieldTesselator.
You can use the reference to alter the heightfield.
setFocalPoint | ( | int | x, |
int | y ) |
Sets the focal point.
The tesselator generates high-resolution terrain around the focal point, and progressively lower and lower resolution terrain as you get farther away. The units are in pixels.
bool setHeightfield | ( | const Filename | filename, |
PNMFileType | type ) |
Loads the specified greyscale image file into the heightfield.
setHorizontalScale | ( | double | h | ) |
Sets the horizontal scale.
The default scale is 1.0, meaning that each pixel in the heightfield is 1x1 panda units wide.
setMaxTriangles | ( | int | n | ) |
Sets the max triangles per geom.
setPolyCount | ( | int | n | ) |
Sets the polygon-count target.
The tesselator usually manages to come within about 20% of the target, plus or minus.
setVerticalScale | ( | double | v | ) |
Sets the vertical scale.
The default scale is 255.0, meaning that each as the gray value ranges from (0-1), the elevation ranges from (0-255) feet.
setVisibilityRadius | ( | int | r | ) |
Sets the visibility radius.
Polygons that are completely outside the radius (relative to the focal point) are cropped away. The cropping is imperfect (all approximations are conservative), so this should be used in conjunction with a far clipping plane, fog, or some other visibility limiting mechanism. The units are in pixels.