HDK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
RAY/RAY_DemoVolumeSphere.C
/*
* Copyright (c) 2024
* Side Effects Software Inc. All rights reserved.
*
* Redistribution and use of Houdini Development Kit samples in source and
* binary forms, with or without modification, are permitted provided that the
* following conditions are met:
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* 2. The name of Side Effects Software may not be used to endorse or
* promote products derived from this software without specific prior
* written permission.
*
* THIS SOFTWARE IS PROVIDED BY SIDE EFFECTS SOFTWARE `AS IS' AND ANY EXPRESS
* OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
* NO EVENT SHALL SIDE EFFECTS SOFTWARE BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
* OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*----------------------------------------------------------------------------
* This is a sample procedural DSO to generate a volumetric sphere
*/
#include <UT/UT_Vector3.h>
#include <UT/UT_IntArray.h>
#include <UT/UT_Array.h>
//
// ray_VolumeSphere
//
namespace HDK_Sample {
/// @brief Volume primitive used by @ref RAY/RAY_DemoVolumeSphere.C
class ray_VolumeSphere : public VGEO_Volume
{
public:
float getNativeStepSize() const override { return 0.1F; }
float radius,
float dbound,
float zerothreshold) const override;
UT_IntArray &sizes) const override;
void evaluate(const UT_Vector3 &pos,
const UT_Filter &filter,
float radius, float time,
int idx, float *data) const override;
const UT_Filter &filter,
float radius, float time,
int idx) const override;
};
}
using namespace HDK_Sample;
void
float,
float dbound,
float) const
{
// For this example, we simply create a single box which contains the unit
// sphere which. It's important to account for the displacement bound
// (dbound)
boxes.append(UT_BoundingBox(-1-dbound, -1-dbound, -1-dbound,
1+dbound, 1+dbound, 1+dbound));
}
void
{
// These are the "VEX" variables we provide to shaders.
// "density[1]" represents the density of the sphere (1 inside, 0 outside)
// "radius[1]" is the distance from the origin
// Both are "float" types.
//
// The order in which they are added is used in the evaluate() method below
names.append("density");
sizes.append(1);
names.append("radius");
sizes.append(1);
}
void
const UT_Filter &,
float, float,
int idx, float *data) const
{
switch (idx)
{
// 0 == "density"
case 0: data[0] = (pos.length2() < 1.0F) ? 1.0F : 0.0F; break;
// 1 == "radius"
case 1: data[0] = pos.length(); break;
default: UT_ASSERT(0 && "Invalid attribute evaluation");
}
}
const UT_Filter &,
float, float,
int) const
{
return UT_Vector3(0, 0, 0);
}
//
// RAY_DemoVolumeSphere
//
{
public:
: RAY_ProceduralFactory::ProcDefinition("demovolume")
{
}
RAY_Procedural *create() const override
{ return new RAY_DemoVolumeSphere(); }
RAY_ProceduralArg *arguments() const override { return nullptr; }
};
void
{
factory->insert(new ProcDef);
}
{
}
{
}
int
{
myBox = UT_BoundingBox(-1, -1, -1, 1, 1, 1);
if (box)
myBox.enlargeBounds(*box);
return 1;
}
void
{
box = myBox;
}
void
{
obj->addVolume(new ray_VolumeSphere, 0.0F);
}