Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F122360731
newtonparticle.cpp
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
Thu, Jul 17, 10:05
Size
1 KB
Mime Type
text/x-c
Expires
Sat, Jul 19, 10:05 (2 d)
Engine
blob
Format
Raw Data
Handle
27457340
Attached To
rSYMKIT symkit
newtonparticle.cpp
View Options
#include "newtonparticle.h"
#include "descriptors/newton.h"
NewtonParticle::NewtonParticle( GLModel * model,
const double& mass,
const SVector<3>& position,
const SVector<3>& speed,
const QString &label,
specs_t flags)
: Particle(NULL, model, label, flags)
{
newtonDescriptor = new NewtonDescriptor(mass, position, speed);
bind(newtonDescriptor);
}
NewtonParticle::NewtonParticle( const NewtonDescriptor &desc,
GLModel * model,
const QString &label,
specs_t flags)
: Particle(NULL, model, label, flags)
{
newtonDescriptor = new NewtonDescriptor(desc);
bind(newtonDescriptor);
}
NewtonParticle::~NewtonParticle()
{
release();
/* Delete the instance */
delete newtonDescriptor;
}
/* returns the position of the NewtonParticle */
SVector<3> NewtonParticle::position() const
{
return newtonDescriptor->position;
}
/* apply a force to the NewtonParticle */
void NewtonParticle::addForce(const SVector<3> &force)
{
newtonDescriptor->forces += force;
}
/* get the mass of the NewtonParticle */
double NewtonParticle::mass() const
{
return newtonDescriptor->mass;
}
/* get the speed of the NewtonParticle */
const SVector<3>& NewtonParticle::speed() const
{
return newtonDescriptor->speed;
}
/* set the speed of the NewtonParticle */
void NewtonParticle::setSpeed(const SVector<3>& speed)
{
newtonDescriptor->speed = speed;
}
/* set the mass of the NewtonParticle */
void NewtonParticle::setMass(double mass)
{
newtonDescriptor->mass = mass;
}
Event Timeline
Log In to Comment