Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91905079
ping_pong_ball.hh
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
Fri, Nov 15, 15:12
Size
909 B
Mime Type
text/x-c++
Expires
Sun, Nov 17, 15:12 (2 d)
Engine
blob
Format
Raw Data
Handle
22322957
Attached To
R9490 Homework_sp4e_Peruzzo_SáezUribe
ping_pong_ball.hh
View Options
#ifndef __PING_PONG_BALL__HH__
#define __PING_PONG_BALL__HH__
/* -------------------------------------------------------------------------- */
#include "particle.hh"
//! Class for ping-pong ball
class PingPongBall : public Particle {
/* ------------------------------------------------------------------------ */
/* Methods */
/* ------------------------------------------------------------------------ */
public:
//! Get contact dissipation
Real& getContactDissipation() { return contact_dissipation; }
//! Get ball radius
Real& getRadius() { return radius; }
void printself(std::ostream& stream) const override;
void initself(std::istream& sstr) override;
private:
Real radius, contact_dissipation;
};
/* -------------------------------------------------------------------------- */
#endif //__PING_PONG_BALL__HH__
Event Timeline
Log In to Comment