EBGeometry  1.0
Public Member Functions | Protected Attributes | List of all members
SphereSDF< T > Class Template Reference

Signed distance field for sphere. More...

#include <EBGeometry_AnalyticDistanceFunctions.hpp>

Inheritance diagram for SphereSDF< T >:
Inheritance graph
[legend]
Collaboration diagram for SphereSDF< T >:
Collaboration graph
[legend]

Public Member Functions

 SphereSDF ()=delete
 Disallowed weak construction.
 
 SphereSDF (const Vec3T< T > &a_center, const T &a_radius) noexcept
 Default constructor. More...
 
 SphereSDF (const SphereSDF &a_other) noexcept
 Copy constructor.
 
virtual ~SphereSDF () noexcept=default
 Destructor.
 
const Vec3T< T > & getCenter () const noexcept
 Get center.
 
Vec3T< T > & getCenter () noexcept
 Get center.
 
const T & getRadius () const noexcept
 Get radius.
 
T & getRadius () noexcept
 Get radius.
 
virtual T signedDistance (const Vec3T< T > &a_point) const noexcept override
 Signed distance function for sphere. More...
 
- Public Member Functions inherited from SignedDistanceFunction< T >
 SignedDistanceFunction ()=default
 Disallowed, use the full constructor.
 
virtual ~SignedDistanceFunction ()=default
 Destructor (does nothing)
 
virtual T value (const Vec3T< T > &a_point) const noexcept override final
 Implementation of ImplicitFunction::value. More...
 
virtual Vec3T< T > normal (const Vec3T< T > &a_point, const T &a_delta) const noexcept
 Signed distance normal vector. More...
 
- Public Member Functions inherited from ImplicitFunction< T >
 ImplicitFunction ()=default
 Disallowed, use the full constructor.
 
virtual ~ImplicitFunction ()=default
 Destructor (does nothing)
 
operator() (const Vec3T< T > &a_point) const noexcept
 Alternative signature for the value function. More...
 
template<class BV >
BV approximateBoundingVolumeOctree (const Vec3T< T > &a_initialLowCorner, const Vec3T< T > &a_initialHighCorner, const unsigned int a_maxTreeDepth, const T &a_safety=0.0) const noexcept
 Compute an approximation to the bounding volume for the implicit surface, using octrees. More...
 

Protected Attributes

Vec3T< T > m_center
 Sphere center.
 
m_radius
 Sphere radius.
 

Detailed Description

template<class T>
class SphereSDF< T >

Signed distance field for sphere.

Constructor & Destructor Documentation

◆ SphereSDF()

template<class T >
SphereSDF< T >::SphereSDF ( const Vec3T< T > &  a_center,
const T &  a_radius 
)
inlinenoexcept

Default constructor.

Parameters
[in]a_centerSphere center
[in]a_radiusSphere radius

Member Function Documentation

◆ signedDistance()

template<class T >
virtual T SphereSDF< T >::signedDistance ( const Vec3T< T > &  a_point) const
inlineoverridevirtualnoexcept

Signed distance function for sphere.

Parameters
[in]a_pointPosition.

Implements SignedDistanceFunction< T >.


The documentation for this class was generated from the following file: