#include <OgreVolumeCSGSource.h>

Public Member Functions | |
| CSGNoiseSource (const Source *src, Real *frequencies, Real *amplitudes, size_t numOctaves, long seed) | |
| Constructor. | |
| CSGNoiseSource (const Source *src, Real *frequencies, Real *amplitudes, size_t numOctaves) | |
| Constructor with current time as seed. | |
| bool | getFirstRayIntersection (const Ray &ray, Vector3 &result, Real scale=(Real) 1.0, size_t maxIterations=5000, Real maxDistance=(Real) 10000.0) const |
| Gets the first intersection of a ray with the volume. | |
| long | getSeed (void) const |
| Gets the initial seed. | |
| virtual const Source * | getSource (void) const |
| Gets the source. | |
| virtual Real | getValue (const Vector3 &position) const |
| Overridden from Source. | |
| virtual Vector4 | getValueAndGradient (const Vector3 &position) const |
| Overridden from Source. | |
| Real | getVolumeSpaceToWorldSpaceFactor (void) const |
| Gets a factor to come from volume coordinate to world coordinate. | |
| void | serialize (const Vector3 &from, const Vector3 &to, float voxelWidth, const String &file) |
| Serializes a volume source to a discrete grid file with deflated compression. | |
| void | serialize (const Vector3 &from, const Vector3 &to, float voxelWidth, Real maxClampedAbsoluteDensity, const String &file) |
| Same as the other serialize function but with a user definable maximum absolute density value. | |
| virtual void | setSource (Source *a) |
| Sets the source. | |
Static Public Attributes | |
| static const size_t | SERIALIZATION_CHUNK_SIZE |
| The amount of items being written as one chunk during serialization. | |
| static const uint32 | VOLUME_CHUNK_ID |
| The id of volume files. | |
| static const uint16 | VOLUME_CHUNK_VERSION |
| The version of volume files. | |
Protected Member Functions | |
| Real | getInternalValue (const Vector3 &position) const |
| virtual Vector3 | getIntersectionEnd (const Ray &ray, Real maxDistance) const |
| Gets the end vector of an intersection. | |
| virtual Vector3 | getIntersectionStart (const Ray &ray, Real maxDistance) const |
| Gets the start vector of an intersection. | |
| void | setData (void) |
| Prepares the node members. | |
Protected Attributes | |
| Real * | mAmplitudes |
| The amplitudes of the octaves. | |
| Real * | mFrequencies |
| The frequencies of the octaves. | |
| Real | mGradientOff |
| To calculate the gradient. | |
| SimplexNoise | mNoise |
| To make some noise. | |
| size_t | mNumOctaves |
| The amount of octaves. | |
| long | mSeed |
| The initial seed. | |
| const Source * | mSrc |
| The first operant. | |
Definition at line 386 of file OgreVolumeCSGSource.h.
| Ogre::Volume::CSGNoiseSource::CSGNoiseSource | ( | const Source * | src, |
| Real * | frequencies, | ||
| Real * | amplitudes, | ||
| size_t | numOctaves, | ||
| long | seed | ||
| ) |
Constructor.
| src | The source to add the noise to. |
| frequencies | The frequencies of the added noise octaves. |
| amplitudes | The amplitudes of the added noise octaves. |
| numOctaves | The amount of octaves. |
| seed | The seed to initialize the random number generator with. |
| Ogre::Volume::CSGNoiseSource::CSGNoiseSource | ( | const Source * | src, |
| Real * | frequencies, | ||
| Real * | amplitudes, | ||
| size_t | numOctaves | ||
| ) |
Constructor with current time as seed.
| src | The source to add the noise to. |
| frequencies | The frequencies of the added noise octaves. |
| amplitudes | The amplitudes of the added noise octaves. |
| numOctaves | The amount of octaves. |
| bool Ogre::Volume::Source::getFirstRayIntersection | ( | const Ray & | ray, |
| Vector3 & | result, | ||
| Real | scale = (Real) 1.0, |
||
| size_t | maxIterations = 5000, |
||
| Real | maxDistance = (Real) 10000.0 |
||
| ) | const [inherited] |
Gets the first intersection of a ray with the volume.
If you are using this together with the VolumeChunk: Beware of the possible scaling or other transformations you did on the Chunk! Do the inverse first on the ray origin. Example of a scaling with the factor 10: ray.setOrigin(ray.getOrigin() / (Real)10.0);
| ray | The ray. |
| result | Will hold the intersection point if there is an intersection. |
| scale | The scaling of the volume compared to the world. |
| maxIterations | The maximum amount of iterations on the ray before giving up. |
| maxDistance | The maximum distance of the intersection point. |
| Real Ogre::Volume::CSGNoiseSource::getInternalValue | ( | const Vector3 & | position | ) | const [protected] |
Definition at line 417 of file OgreVolumeCSGSource.h.
References Ogre::Vector3::x, Ogre::Vector3::y, and Ogre::Vector3::z.
| virtual Vector3 Ogre::Volume::Source::getIntersectionEnd | ( | const Ray & | ray, |
| Real | maxDistance | ||
| ) | const [protected, virtual, inherited] |
Gets the end vector of an intersection.
This is needed for restricted volumes like discreet grids.
| ray | The ray of the intersection. |
| maxDistance | The maximum distance to query the ray for intersections. |
Reimplemented in Ogre::Volume::GridSource.
| virtual Vector3 Ogre::Volume::Source::getIntersectionStart | ( | const Ray & | ray, |
| Real | maxDistance | ||
| ) | const [protected, virtual, inherited] |
Gets the start vector of an intersection.
This is needed for restricted volumes like discreet grids.
| ray | The ray of the intersection. |
| maxDistance | The maximum distance to query the ray for intersections. |
Reimplemented in Ogre::Volume::GridSource.
| long Ogre::Volume::CSGNoiseSource::getSeed | ( | void | ) | const |
Gets the initial seed.
| virtual const Source* Ogre::Volume::CSGUnarySource::getSource | ( | void | ) | const [virtual, inherited] |
Gets the source.
| virtual Real Ogre::Volume::CSGNoiseSource::getValue | ( | const Vector3 & | position | ) | const [virtual] |
Overridden from Source.
Implements Ogre::Volume::Source.
| virtual Vector4 Ogre::Volume::CSGNoiseSource::getValueAndGradient | ( | const Vector3 & | position | ) | const [virtual] |
Overridden from Source.
Implements Ogre::Volume::Source.
| Real Ogre::Volume::Source::getVolumeSpaceToWorldSpaceFactor | ( | void | ) | const [inherited] |
Gets a factor to come from volume coordinate to world coordinate.
Reimplemented in Ogre::Volume::GridSource.
| void Ogre::Volume::Source::serialize | ( | const Vector3 & | from, |
| const Vector3 & | to, | ||
| float | voxelWidth, | ||
| const String & | file | ||
| ) | [inherited] |
Serializes a volume source to a discrete grid file with deflated compression.
To achieve better compression, all density values are clamped within a maximum absolute value of (to - from).length() / 16.0. The values are scanned in this inner-loop-order: z, x, y. y last because there is usually the least isosurface intersection to be expected in the use case of terrain and so more often the maximum density value hit. The values are written as 16 Bit floats to save space. Note that this process is not lossless, the tradeoff is between accuracy of the source-reproduction (smaller voxelWidth) and smaller filesize (bigger voxelWidth).
| from | The start point to scan the volume. |
| to | The end point to scan the volume. |
| voxelWidth | The width of a single cube in the density grid. |
| file | The file to write the grid to. |
| void Ogre::Volume::Source::serialize | ( | const Vector3 & | from, |
| const Vector3 & | to, | ||
| float | voxelWidth, | ||
| Real | maxClampedAbsoluteDensity, | ||
| const String & | file | ||
| ) | [inherited] |
Same as the other serialize function but with a user definable maximum absolute density value.
| from | The start point to scan the volume. |
| to | The end point to scan the volume. |
| voxelWidth | The width of a single cube in the density grid. |
| maxClampedAbsoluteDensity | The maximum absolute density value to be written into the file, influencing the compression rate. |
| file | The file to write the grid to. |
| void Ogre::Volume::CSGNoiseSource::setData | ( | void | ) | [protected] |
Prepares the node members.
| virtual void Ogre::Volume::CSGUnarySource::setSource | ( | Source * | a | ) | [virtual, inherited] |
Sets the source.
| a | The source. |
Real* Ogre::Volume::CSGNoiseSource::mAmplitudes [protected] |
The amplitudes of the octaves.
Definition at line 394 of file OgreVolumeCSGSource.h.
Real* Ogre::Volume::CSGNoiseSource::mFrequencies [protected] |
The frequencies of the octaves.
Definition at line 391 of file OgreVolumeCSGSource.h.
Real Ogre::Volume::CSGNoiseSource::mGradientOff [protected] |
To calculate the gradient.
Definition at line 403 of file OgreVolumeCSGSource.h.
SimplexNoise Ogre::Volume::CSGNoiseSource::mNoise [protected] |
To make some noise.
Definition at line 400 of file OgreVolumeCSGSource.h.
size_t Ogre::Volume::CSGNoiseSource::mNumOctaves [protected] |
The amount of octaves.
Definition at line 397 of file OgreVolumeCSGSource.h.
long Ogre::Volume::CSGNoiseSource::mSeed [protected] |
The initial seed.
Definition at line 406 of file OgreVolumeCSGSource.h.
const Source* Ogre::Volume::CSGUnarySource::mSrc [protected, inherited] |
The first operant.
Definition at line 306 of file OgreVolumeCSGSource.h.
const size_t Ogre::Volume::Source::SERIALIZATION_CHUNK_SIZE [static, inherited] |
The amount of items being written as one chunk during serialization.
Definition at line 76 of file OgreVolumeSource.h.
const uint32 Ogre::Volume::Source::VOLUME_CHUNK_ID [static, inherited] |
The id of volume files.
Definition at line 70 of file OgreVolumeSource.h.
const uint16 Ogre::Volume::Source::VOLUME_CHUNK_VERSION [static, inherited] |
The version of volume files.
Definition at line 73 of file OgreVolumeSource.h.
Copyright © 2012 Torus Knot Software Ltd

This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 Unported License.
Last modified Mon Jul 27 2020 13:41:52