![]()  | 
  
    PeriDyno 1.2.1
    
   | 
 
#include <PointsBehindMesh.h>


Public Types | |
| typedef TDataType::Real | Real | 
| typedef TDataType::Coord | Coord | 
| typedef TDataType::Matrix | Matrix | 
| typedef TopologyModule::Triangle | Triangle | 
  Public Types inherited from dyno::Sampler< TDataType > | |
| typedef TDataType::Real | Real | 
| typedef TDataType::Coord | Coord | 
  Public Types inherited from dyno::Node | |
| template<class T> | |
| using | SPtr = std::shared_ptr<T> | 
  Public Types inherited from dyno::OBase | |
| typedef std::vector< FBase * > | FieldVector | 
| typedef std::map< FieldID, FBase * > | FieldMap | 
Public Member Functions | |
| PointsBehindMesh () | |
| ~PointsBehindMesh () override | |
| DEF_VAR (Real, Thickness, Real(0.2), "") | |
| DEF_VAR (Real, SamplingDistance, Real(0.05), "") | |
| DEF_VAR (bool, GeneratingDirection, true, "") | |
| DEF_INSTANCE_IN (TriangleSet< TDataType >, TriangleSet, "") | |
| DEF_ARRAY_STATE (Coord, Position, DeviceType::GPU, "") | |
| DEF_INSTANCE_STATE (TriangleSet< TDataType >, Plane, "") | |
| DEF_ARRAY_STATE (Coord, PointNormal, DeviceType::GPU, "Normal Vector of the point set") | |
| DEF_VAR_OUT (bool, PointGrowthDirection, "") | |
| DEF_ARRAY_STATE (int, PointBelongTriangleIndex, DeviceType::GPU, "") | |
| DEF_VAR_OUT (Real, SamplingDistance, "") | |
  Public Member Functions inherited from dyno::Sampler< TDataType > | |
| Sampler () | |
| std::string | getNodeType () override | 
| DEF_INSTANCE_STATE (PointSet< TDataType >, PointSet, "") | |
  Public Member Functions inherited from dyno::Node | |
| Node () | |
| ~Node () override | |
| void | setName (std::string name) | 
| std::string | getName () override | 
| bool | isAutoSync () | 
| bool | isAutoHidden () | 
| void | setAutoSync (bool con) | 
| Whether the node can be automatically synchronized when its ancestor is updated.   | |
| void | setAutoHidden (bool con) | 
| virtual bool | isActive () | 
| Check the state of dynamics.   | |
| virtual void | setActive (bool active) | 
| Set the state of dynamics.   | |
| virtual bool | isVisible () | 
| Check the visibility of context.   | |
| virtual void | setVisible (bool visible) | 
| Set the visibility of context.   | |
| virtual Real | getDt () | 
| Simulation timestep.   | |
| void | setDt (Real dt) | 
| void | setSceneGraph (SceneGraph *scn) | 
| SceneGraph * | getSceneGraph () | 
| std::vector< NodePort * > & | getImportNodes () | 
| std::vector< NodePort * > & | getExportNodes () | 
| bool | addModule (std::shared_ptr< Module > module) | 
| Add a module to m_module_list and other special module lists.   | |
| bool | deleteModule (std::shared_ptr< Module > module) | 
| template<class TModule> | |
| bool | addModule (std::shared_ptr< TModule > tModule) | 
| Add a speical kind of module.   | |
| template<class TModule> | |
| bool | deleteModule (std::shared_ptr< TModule > tModule) | 
| std::list< std::shared_ptr< Module > > & | getModuleList () | 
| bool | hasModule (std::string name) | 
| std::shared_ptr< Module > | getModule (std::string name) | 
| Get a module by its name.   | |
| template<class TModule> | |
| std::shared_ptr< TModule > | getModule () | 
| Get the Module by the module class name.   | |
| template<class TModule> | |
| std::shared_ptr< TModule > | getModule (std::string name) | 
| std::shared_ptr< Pipeline > | resetPipeline () | 
| std::shared_ptr< AnimationPipeline > | animationPipeline () | 
| std::shared_ptr< GraphicsPipeline > | graphicsPipeline () | 
| template<class TModule> | |
| std::shared_ptr< TModule > | addModule (std::string name) | 
| void | update () | 
| Called every time interval.   | |
| void | updateGraphicsContext () | 
| void | reset () | 
| virtual NBoundingBox | boundingBox () | 
| bool | connect (NodePort *nPort) | 
| Depth-first tree traversal.   | |
| bool | disconnect (NodePort *nPort) | 
| bool | attachField (FBase *field, std::string name, std::string desc, bool autoDestroy=true) override | 
| Attach a field to Node.   | |
| std::vector< NodePort * > & | getAllNodePorts () | 
| uint | sizeOfNodePorts () | 
| uint | sizeOfImportNodes () const | 
| uint | sizeOfExportNodes () const | 
| void | setForceUpdate (bool b) | 
| DEF_VAR_STATE (Real, ElapsedTime, 0, "Elapsed Time") | |
| DEF_VAR_STATE (Real, TimeStep, Real(0.033), "Time step size") | |
| DEF_VAR_STATE (uint, FrameNumber, 0, "Frame number") | |
  Public Member Functions inherited from dyno::OBase | |
| OBase () | |
| ~OBase () override | |
| virtual std::string | caption () | 
| Return the caption.   | |
| virtual bool | captionVisible () | 
| Whether to hide the caption in the GUI.   | |
| virtual std::string | description () | 
| Return a description for the node or module, override this function to support user-defined description.   | |
| bool | addField (FBase *data) | 
| Add a field to Base FieldID will be set to the name of Field by default.   | |
| bool | addField (FieldID name, FBase *data) | 
| Add a field to Base.   | |
| bool | addFieldAlias (FieldID name, FBase *data) | 
| bool | addFieldAlias (FieldID name, FBase *data, FieldMap &fieldAlias) | 
| bool | findField (FBase *data) | 
| Find a field by its pointer.   | |
| bool | findFieldAlias (const FieldID name) | 
| Find a field by its name.   | |
| bool | findFieldAlias (const FieldID name, FieldMap &fieldAlias) | 
| Find a field in fieldAlias by its name This function is typically called by other functions.   | |
| bool | removeField (FBase *data) | 
| Remove a field by its pointer.   | |
| bool | removeFieldAlias (const FieldID name) | 
| Remove a field by its name.   | |
| bool | removeFieldAlias (const FieldID name, FieldMap &fieldAlias) | 
| FBase * | getField (const FieldID name) | 
| Return a field by its name.   | |
| std::vector< FBase * > & | getAllFields () | 
| template<typename T> | |
| T * | getField (FieldID name) | 
| bool | isAllFieldsReady () | 
| Check the completeness of all required fields.   | |
| std::vector< FieldID > | getFieldAlias (FBase *data) | 
| int | getFieldAliasCount (FBase *data) | 
| void | setBlockCoord (float x, float y) | 
| float | bx () | 
| float | by () | 
| bool | findInputField (FBase *field) | 
| bool | addInputField (FBase *field) | 
| bool | removeInputField (FBase *field) | 
| std::vector< FBase * > & | getInputFields () | 
| bool | findOutputField (FBase *field) | 
| bool | addOutputField (FBase *field) | 
| bool | addToOutput (FBase *field) | 
| bool | removeOutputField (FBase *field) | 
| bool | removeFromOutput (FBase *field) | 
| std::vector< FBase * > & | getOutputFields () | 
| bool | findParameter (FBase *field) | 
| bool | addParameter (FBase *field) | 
| bool | removeParameter (FBase *field) | 
| std::vector< FBase * > & | getParameters () | 
  Public Member Functions inherited from dyno::Object | |
| Object () | |
| virtual | ~Object () | 
| ObjectId | objectId () | 
Protected Member Functions | |
| void | resetStates () override | 
  Protected Member Functions inherited from dyno::Node | |
| bool | appendExportNode (NodePort *nodePort) | 
| bool | removeExportNode (NodePort *nodePort) | 
| virtual void | preUpdateStates () | 
| virtual void | updateStates () | 
| virtual void | postUpdateStates () | 
| virtual void | updateTopology () | 
| virtual bool | validateInputs () | 
| virtual bool | requireUpdate () | 
| void | tick () | 
| notify all state and output fields are updated   | |
Private Member Functions | |
| DECLARE_TCLASS (PointsBehindMesh, TDataType) | |
Private Attributes | |
| DArray< Coord > | msquare_1 | 
| DArray< Coord > | msquare_2 | 
| DArray< Coord > | msquare_3 | 
| DArray< Coord > | msquare_4 | 
| DArray< Coord > | mBasicVector_x | 
| DArray< Coord > | mBasicVector_y | 
| DArray< Coord > | mBasicVector_z | 
| DArray< Coord > | mVerticesTempt | 
| DArray< Triangle > | mTriangleTempt | 
| DArray< int > | mThinPointSize | 
| DArray< int > | mThickPointSize | 
| DArray< Coord > | mThickPoints | 
| DArray< Coord > | mThinPoints | 
| DArray< bool > | mRemovingFlag | 
| DArray< int > | mPointOfTriangleId | 
| DArray< int > | mSeedOfTriangleId | 
| DArray< Coord > | mTriangleNormal | 
| std::shared_ptr< NeighborPointQuery< TDataType > > | m_NeighborPointQuery | 
| Scan< int > | scan | 
Additional Inherited Members | |
  Static Public Member Functions inherited from dyno::Object | |
| static bool | registerClass (ClassInfo *ci) | 
| static Object * | createObject (std::string name) | 
| static std::map< std::string, ClassInfo * > * | getClassMap () | 
| static ObjectId | baseId () | 
| Base Id.   | |
  Public Attributes inherited from dyno::Node | |
| std::string | m_node_name | 
  Protected Attributes inherited from dyno::OBase | |
| std::vector< FBase * > | fields_input | 
| std::vector< FBase * > | fields_output | 
| std::vector< FBase * > | fields_param | 
Definition at line 42 of file PointsBehindMesh.h.
| typedef TDataType::Coord dyno::PointsBehindMesh< TDataType >::Coord | 
Definition at line 48 of file PointsBehindMesh.h.
| typedef TDataType::Matrix dyno::PointsBehindMesh< TDataType >::Matrix | 
Definition at line 49 of file PointsBehindMesh.h.
| typedef TDataType::Real dyno::PointsBehindMesh< TDataType >::Real | 
Definition at line 47 of file PointsBehindMesh.h.
| typedef TopologyModule::Triangle dyno::PointsBehindMesh< TDataType >::Triangle | 
Definition at line 50 of file PointsBehindMesh.h.
| dyno::PointsBehindMesh< TDataType >::PointsBehindMesh | ( | ) | 

      
  | 
  inlineoverride | 
Definition at line 53 of file PointsBehindMesh.h.
      
  | 
  private | 

| dyno::PointsBehindMesh< TDataType >::DEF_ARRAY_STATE | ( | Coord | , | 
| PointNormal | , | ||
| DeviceType::GPU | , | ||
| "Normal Vector of the point set" | ) | 
| dyno::PointsBehindMesh< TDataType >::DEF_ARRAY_STATE | ( | Coord | , | 
| Position | , | ||
| DeviceType::GPU | , | ||
| "" | ) | 
| dyno::PointsBehindMesh< TDataType >::DEF_ARRAY_STATE | ( | int | , | 
| PointBelongTriangleIndex | , | ||
| DeviceType::GPU | , | ||
| "" | ) | 
| dyno::PointsBehindMesh< TDataType >::DEF_INSTANCE_IN | ( | TriangleSet< TDataType > | , | 
| TriangleSet | , | ||
| "" | ) | 
| dyno::PointsBehindMesh< TDataType >::DEF_INSTANCE_STATE | ( | TriangleSet< TDataType > | , | 
| Plane | , | ||
| "" | ) | 
| dyno::PointsBehindMesh< TDataType >::DEF_VAR | ( | bool | , | 
| GeneratingDirection | , | ||
| true | , | ||
| "" | ) | 
| dyno::PointsBehindMesh< TDataType >::DEF_VAR | ( | Real | , | 
| SamplingDistance | , | ||
| Real(0.05) | , | ||
| "" | ) | 
| dyno::PointsBehindMesh< TDataType >::DEF_VAR | ( | Real | , | 
| Thickness | , | ||
| Real(0.2) | , | ||
| "" | ) | 
| dyno::PointsBehindMesh< TDataType >::DEF_VAR_OUT | ( | bool | , | 
| PointGrowthDirection | , | ||
| "" | ) | 
| dyno::PointsBehindMesh< TDataType >::DEF_VAR_OUT | ( | Real | , | 
| SamplingDistance | , | ||
| "" | ) | 
      
  | 
  overrideprotectedvirtual | 
Reimplemented from dyno::Node.
      
  | 
  private | 
Definition at line 105 of file PointsBehindMesh.h.
      
  | 
  private | 
Definition at line 83 of file PointsBehindMesh.h.
      
  | 
  private | 
Definition at line 83 of file PointsBehindMesh.h.
      
  | 
  private | 
Definition at line 83 of file PointsBehindMesh.h.
      
  | 
  private | 
Definition at line 99 of file PointsBehindMesh.h.
      
  | 
  private | 
Definition at line 97 of file PointsBehindMesh.h.
      
  | 
  private | 
Definition at line 101 of file PointsBehindMesh.h.
      
  | 
  private | 
Definition at line 81 of file PointsBehindMesh.h.
      
  | 
  private | 
Definition at line 81 of file PointsBehindMesh.h.
      
  | 
  private | 
Definition at line 81 of file PointsBehindMesh.h.
      
  | 
  private | 
Definition at line 81 of file PointsBehindMesh.h.
      
  | 
  private | 
Definition at line 93 of file PointsBehindMesh.h.
      
  | 
  private | 
Definition at line 91 of file PointsBehindMesh.h.
      
  | 
  private | 
Definition at line 95 of file PointsBehindMesh.h.
      
  | 
  private | 
Definition at line 89 of file PointsBehindMesh.h.
      
  | 
  private | 
Definition at line 103 of file PointsBehindMesh.h.
      
  | 
  private | 
Definition at line 87 of file PointsBehindMesh.h.
      
  | 
  private | 
Definition at line 85 of file PointsBehindMesh.h.
      
  | 
  private | 
Definition at line 107 of file PointsBehindMesh.h.