source: flair-src/trunk/lib/FlairCore/src/OneAxisRotation.cpp@ 113

Last change on this file since 113 was 15, checked in by Bayard Gildas, 8 years ago

sources reformatted with flair-format-dir script

File size: 1.5 KB
RevLine 
[2]1// %flair:license{
[15]2// This file is part of the Flair framework distributed under the
3// CECILL-C License, Version 1.0.
[2]4// %flair:license}
5// created: 2013/04/17
6// filename: OneAxisRotation.cpp
7//
8// author: Guillaume Sanahuja
9// Copyright Heudiasyc UMR UTC/CNRS 7253
10//
11// version: $Id: $
12//
13// purpose: Class defining a rotation around one axis
14//
15//
16/*********************************************************************/
17
[15]18// this "filter" is in core but it should be in filter
19// filter depends on sensoractuator
20// sensoractuators depends on oneaxisrotation
21// so if oneaxisrotation is in fiter we have a circular dependency
22// TODO: fix this!
[2]23
24#include "OneAxisRotation.h"
25#include "OneAxisRotation_impl.h"
26#include <Vector3D.h>
27#include <Euler.h>
28
29using std::string;
30
[15]31namespace flair {
32namespace core {
[2]33
[15]34OneAxisRotation::OneAxisRotation(const gui::LayoutPosition *position,
35 string name)
36 : gui::GroupBox(position, name) {
37 pimpl_ = new OneAxisRotation_impl(this);
[2]38}
39
[15]40OneAxisRotation::~OneAxisRotation() { delete pimpl_; }
[2]41
[15]42void OneAxisRotation::ComputeRotation(Vector3D &vector) const {
43 pimpl_->ComputeRotation(vector);
[2]44}
45
[15]46void OneAxisRotation::ComputeRotation(Euler &euler) const {
47 pimpl_->ComputeRotation(euler);
[2]48}
49
[15]50void OneAxisRotation::ComputeRotation(Quaternion &quaternion) const {
51 pimpl_->ComputeRotation(quaternion);
[2]52}
53
[15]54void OneAxisRotation::ComputeRotation(RotationMatrix &matrix) const {
55 pimpl_->ComputeRotation(matrix);
[2]56}
57
58} // end namespace core
59} // end namespace flair
Note: See TracBrowser for help on using the repository browser.