aboutsummaryrefslogtreecommitdiffstats
path: root/src/body.cpp
blob: 9c8babf17b116158f01cf90c475efa37a4e81708 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/* ----------------------------------------------------------------------------
 * body.cpp
 *
 * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com> -- MIT License
 * See file LICENSE for more details
 * ----------------------------------------------------------------------------
 */

#include <utility>

#include "Physics/body.hpp"

namespace yage {

const double Body::GRAVITY = -9.81;

double Body::xPosition() const { return position_[0]; }

double Body::yPosition() const { return position_[1]; }

Body::Body(Vector2d  position, double mass, Vector2d  velocity,
           bool gravity)
    : position_(std::move(position)),
      mass_(mass),
      velocity_(std::move(velocity)),
      gravity_(gravity) {}

}  // yage