Nuke binary plugins 15.1.3
 
Loading...
Searching...
No Matches
DD::Image::rPoint Class Reference

#include <rPoint.h>

Inheritance diagram for DD::Image::rPoint:
DD::Image::rPrimitive DD::Image::Box3

Public Member Functions

const char * Class () override
 
 rPoint (const GeoInfo *info, const Primitive *p, Point::RenderMode mode, float r)
 
 rPoint (const GeoInfo *info, const Primitive *p, int mode, float r)
 
 rPoint (const GeoInfo *info, const Primitive *p, Point::RenderMode mode, const Vector4 &color, float r)
 
 rPoint (const GeoInfo *info, const Primitive *p, int mode, const Vector4 &color, float r)
 
 rPoint (const rPoint &)
 
bool add_to_render (Scene *, PrimitiveContext *) override
 
bool intersect (float x, float y) const override
 
bool intersect (float x, float y, float *dist) const override
 
bool intersect_dist_squared (float x, float y, float *dist_squared) const override
 
bool intersect_scanline (float y, int &X, int &R, VArray &out, VArray &du, VArray &dv) const override
 
rPrimitiveType getPrimitiveType () const override
 
float trace (Scene *) override
 
float distance (float x, float y) const override
 
float distance_squared (float x, float y) const override
 
- Public Member Functions inherited from DD::Image::rPrimitive
virtual const char * Class ()
 
 rPrimitive (const GeoInfo *info, const Primitive *p)
 
 rPrimitive (const rPrimitive &)
 
virtual ~rPrimitive ()
 
virtual rPrimitiveduplicate () const
 
const GeoInfogeoinfo () const
 
const Primitiveparent () const
 
bool cast_shadows () const
 
bool receive_shadows () const
 
virtual bool add_to_render (Scene *, PrimitiveContext *)=0
 
virtual bool add_to_displacement_render (Scene *, PrimitiveContext *)
 
virtual bool intersect (float x, float y) const =0
 
virtual bool intersect (float x, float y, float *dist) const =0
 
virtual bool intersect_dist_squared (float x, float y, float *dist_squared) const =0
 
virtual bool intersect_scanline (float y, int &X, int &R, VArray &v0, VArray &du, VArray &dv) const =0
 
virtual float trace (Scene *)=0
 
virtual float distance (float x, float y) const =0
 
virtual float distance_squared (float x, float y) const =0
 
virtual void subdivide (std::vector< rPrimitive * > &primitives, SubdivisionContext *stx)
 
virtual rPrimitiveType getPrimitiveType () const
 
void * operator new (size_t size)
 
void operator delete (void *mem)
 
void * operator new[] (size_t size)
 
void operator delete[] (void *mem)
 
- Public Member Functions inherited from DD::Image::Box3
 Box3 (float x, float y, float z)
 
 Box3 (const Vector3 p)
 
 Box3 (const Vector3 p1, const Vector3 p2)
 
const Vector3min () const
 
const Vector3max () const
 
float x () const
 
float y () const
 
float n () const
 near, min z
 
float r () const
 right, max x
 
float t () const
 top, max y
 
float f () const
 far, max z
 
float w () const
 width
 
float h () const
 height
 
float d () const
 depth
 
Vector3 center () const
 
float radius () const
 
void set (float x, float y, float z, float r, float t, float f)
 
void set (Vector3 p1, Vector3 p2)
 
void set (const Box3 &v)
 
void set_min (float x, float y, float z)
 
void set_max (float x, float y, float z)
 
bool empty () const
 
void clear ()
 
bool inside (const Vector3 &p) const
 
void expand (const Box3 &v)
 
void expand (const Vector3 &p)
 
void intersect (const Box3 &v)
 
void transform (const Matrix4 &m)
 
void project (const Matrix4 &m, Box &bbox) const
 
void append (Hash &h) const
 
void print_info (const char *title=nullptr) const
 

Public Attributes

VArray v
 
Point::RenderMode render_mode
 
float radius
 
Vector4 _color
 

Additional Inherited Members

- Public Types inherited from DD::Image::rPrimitive
enum  rPrimitiveType { eUnknownRPrimitive , eRTriangle , eRPoint }
 
- Protected Attributes inherited from DD::Image::rPrimitive
const GeoInfogeoinfo_
 Parent object.
 
const Primitiveparent_
 What primitive generated us.
 

Detailed Description

Renderable point primitive.

Member Function Documentation

◆ Class()

const char * DD::Image::rPoint::Class ( )
inlineoverridevirtual

Reimplemented from DD::Image::rPrimitive.

◆ add_to_render()

bool rPoint::add_to_render ( Scene scene,
PrimitiveContext ptx 
)
overridevirtual

Adds the point to the render if it is beyond the near plane.

Apply perspective to the point.

Implements DD::Image::rPrimitive.

References DD::Image::Scene::add_clipped_render_primitive(), DD::Image::MatrixArray::matrix(), DD::Image::Matrix4::transform(), and DD::Image::VArray::w_normalize().

◆ intersect() [1/2]

bool rPoint::intersect ( float  x,
float  y 
) const
overridevirtual

Implements DD::Image::rPrimitive.

◆ intersect() [2/2]

bool rPoint::intersect ( float  x,
float  y,
float *  dist 
) const
overridevirtual

Implements DD::Image::rPrimitive.

◆ intersect_dist_squared()

bool rPoint::intersect_dist_squared ( float  x,
float  y,
float *  dist_squared 
) const
overridevirtual

Implements DD::Image::rPrimitive.

◆ intersect_scanline()

bool rPoint::intersect_scanline ( float  y,
int &  X,
int &  R,
VArray out,
VArray du,
VArray dv 
) const
overridevirtual

Intersect the point with a scanline. Return whether it was successful and the left and right intersection vertices.

Implements DD::Image::rPrimitive.

◆ getPrimitiveType()

rPrimitiveType DD::Image::rPoint::getPrimitiveType ( ) const
inlineoverridevirtual

Reimplemented from DD::Image::rPrimitive.

◆ trace()

float rPoint::trace ( Scene scene)
overridevirtual

Not implemented yet.

Implements DD::Image::rPrimitive.

◆ distance()

float rPoint::distance ( float  x,
float  y 
) const
overridevirtual

Distance the given screen-space point is away from the object. Returns 0 or negative if inside the object.

Implements DD::Image::rPrimitive.

◆ distance_squared()

float rPoint::distance_squared ( float  x,
float  y 
) const
overridevirtual

Square of the distance to the nearest edge the object in screen-space. Returns 0 or negative if inside the object.

Implements DD::Image::rPrimitive.

References DD::Image::Box3::d().



©2024 The Foundry Visionmongers, Ltd. All Rights Reserved.
www.foundry.com