ParticleFlow/IPFSystem.h File Reference
 
 
 
ParticleFlow/IPFSystem.h File Reference
#include "PFExport.h"
#include "IPViewManager.h"
#include "../object.h"

File Description

Interface for Event-Driven Particle System.

PF System has a system-specific parameters like a maximum number of particles in the system, integration step size etc. Operators and Tests may request values of those parameters through the interface.

Classes

class   IPFSystem

Defines

#define  PFSYSTEM_INTERFACE   Interface_ID(0x74f93d00, 0x1eb34700)
#define  GetPFSystemInterface(obj)   ((IPFSystem*)((GetPFObject(obj))->GetInterface(PFSYSTEM_INTERFACE)))

Functions

IPFSystem PFSystemInterface (Object *obj)
IPFSystem PFSystemInterface (INode *node)

Define Documentation

#define PFSYSTEM_INTERFACE   Interface_ID(0x74f93d00, 0x1eb34700)
#define GetPFSystemInterface (   obj )    ((IPFSystem*)((GetPFObject(obj))->GetInterface(PFSYSTEM_INTERFACE)))

Function Documentation

IPFSystem* PFSystemInterface ( Object obj ) [inline]
                                                 {
        return ((obj == NULL) ? NULL : GetPFSystemInterface(obj));
};
IPFSystem* PFSystemInterface ( INode node ) [inline]
                                                 {
        return ((node == NULL) ? NULL : PFSystemInterface(node->GetObjectRef()));
};