Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F122191067
symsystem.h
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Wed, Jul 16, 12:04
Size
779 B
Mime Type
text/x-c++
Expires
Fri, Jul 18, 12:04 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
27447329
Attached To
rSYMKIT symkit
symsystem.h
View Options
#ifndef SYMSYSTEM_H
#define SYMSYSTEM_H
#include "actorgroup.h"
#include "specs/describable.h"
#include "specs/positionable.h"
class SymSystem : public ActorGroup, public Describable, public Positionable
{
//offset autour du quel les particules evoluent
SVector<3> offset;
public:
/* Constructors */
SymSystem( Descriptor * desc = 0,
const SVector<3> &offset = SVector<3>::nullv,
const QString& label = "",
specs_t flags = S_EVOLVE | S_RENDER | S_POSITION | S_DESCRIPTOR);
SPECS_DESCRIPTOR
virtual SVector<3> position() const override;
SPECS_POSITION
/* Manipulateur de l'offset */
void setOffset(const SVector<3>&);
const SVector<3>& getOffset() const;
};
#endif // SYMSYSTEM_H
Event Timeline
Log In to Comment