-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
36 changed files
with
1,420 additions
and
493 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
// | ||
// Copyright 2018 coord.e | ||
// | ||
// This file is part of Flom. | ||
// | ||
// Flom is free software: you can redistribute it and/or modify | ||
// it under the terms of the GNU General Public License as published by | ||
// the Free Software Foundation, either version 3 of the License, or | ||
// (at your option) any later version. | ||
// | ||
// Flom is distributed in the hope that it will be useful, | ||
// but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
// GNU General Public License for more details. | ||
// | ||
// You should have received a copy of the GNU General Public License | ||
// along with Flom. If not, see <http://www.gnu.org/licenses/>. | ||
// | ||
|
||
#ifndef FLOM_EFFECTOR_TYPE_HPP | ||
#define FLOM_EFFECTOR_TYPE_HPP | ||
|
||
#include "flom/effector.hpp" | ||
|
||
#include <optional> | ||
|
||
namespace flom { | ||
|
||
enum class CoordinateSystem { World, Local }; | ||
|
||
struct EffectorType { | ||
private: | ||
std::optional<CoordinateSystem> location_; | ||
std::optional<CoordinateSystem> rotation_; | ||
|
||
public: | ||
EffectorType() = delete; | ||
EffectorType(std::optional<CoordinateSystem> location, | ||
std::optional<CoordinateSystem> rotation); | ||
|
||
std::optional<CoordinateSystem> location() const; | ||
std::optional<CoordinateSystem> rotation() const; | ||
|
||
void set_location(std::optional<CoordinateSystem>); | ||
void clear_location(); | ||
void set_rotation(std::optional<CoordinateSystem>); | ||
void clear_rotation(); | ||
|
||
Effector new_effector() const; | ||
bool is_compatible(const Effector &) const; | ||
}; | ||
|
||
} // namespace flom | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
// | ||
// Copyright 2018 coord.e | ||
// | ||
// This file is part of Flom. | ||
// | ||
// Flom is free software: you can redistribute it and/or modify | ||
// it under the terms of the GNU General Public License as published by | ||
// the Free Software Foundation, either version 3 of the License, or | ||
// (at your option) any later version. | ||
// | ||
// Flom is distributed in the hope that it will be useful, | ||
// but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
// GNU General Public License for more details. | ||
// | ||
// You should have received a copy of the GNU General Public License | ||
// along with Flom. If not, see <http://www.gnu.org/licenses/>. | ||
// | ||
|
||
#ifndef FLOM_EFFECTOR_WEIGHT_HPP | ||
#define FLOM_EFFECTOR_WEIGHT_HPP | ||
|
||
namespace flom { | ||
|
||
class EffectorWeight { | ||
private: | ||
double location_; | ||
double rotation_; | ||
|
||
static double validate_weight(double); | ||
|
||
public: | ||
EffectorWeight() = delete; | ||
|
||
EffectorWeight(double location, double rotation); | ||
|
||
double location() const noexcept; | ||
double rotation() const noexcept; | ||
|
||
void set_location(double); | ||
void set_rotation(double); | ||
}; | ||
|
||
} // namespace flom | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.