Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
#pragma once
#include "GameObject.h"
#include "CRvec3.h"
#include "CRmat3.h"
class Particle : public GameObject
{
private:
float mass;
CR217::CRVec3 acceleration;
CR217::CRVec3 velocity;
CR217::CRVec3 totalForce;
CR217::CRVec3 futureVelocity;
CR217::CRVec3 futurePosition;
public:
void Draw();
void Update(float);
void calculateForces();
Particle(float m, CR217::CRVec3 position);
~Particle();
};