HomeSort by relevance Sort by last modified time
    Searched defs:Translation (Results 1 - 6 of 6) sorted by null

  /external/eigen/Eigen/src/Eigen2Support/Geometry/
Translation.h 16 * \class Translation
18 * \brief Represents a translation transformation
23 * \note This class is not aimed to be used to store a translation transformation,
29 class Translation
53 Translation() {}
55 inline Translation(const Scalar& sx, const Scalar& sy)
62 inline Translation(const Scalar& sx, const Scalar& sy, const Scalar& sz)
70 explicit inline Translation(const VectorType& vector) : m_coeffs(vector) {}
75 /** Concatenates two translation */
76 inline Translation operator* (const Translation& other) cons
    [all...]
All.h 16 #include "Translation.h"
43 #define Translation eigen2_Translation
69 #include "Translation.h"
98 #undef Translation
  /external/eigen/Eigen/src/Geometry/
Translation.h 17 * \class Translation
19 * \brief Represents a translation transformation
24 * \note This class is not aimed to be used to store a translation transformation,
30 class Translation
54 Translation() {}
56 inline Translation(const Scalar& sx, const Scalar& sy)
63 inline Translation(const Scalar& sx, const Scalar& sy, const Scalar& sz)
70 /** Constructs and initialize the translation transformation from a vector of translation coefficients */
71 explicit inline Translation(const VectorType& vector) : m_coeffs(vector) {
90 const VectorType& translation() const { return m_coeffs; } function in class:Eigen::Translation
91 VectorType& translation() { return m_coeffs; } function in class:Eigen::Translation
    [all...]
  /external/chromium_org/tools/grit/grit/
tclib.py 29 '''Base class with methods shared by Message and Translation.
181 class Translation(BaseMessage):
182 '''A translation.'''
185 super(Translation, self).__init__(text, placeholders, description, meaning)
  /external/chromium_org/tools/grit/grit/extern/
tclib.py 7 # messages destined for the Translation Console, as well as for reading
21 # The basic classes defined here for external use are Message and Translation,
99 # BaseMessage is the common parent class of Message and Translation.
454 # The Translation class represents translated messages
456 class Translation(BaseMessage):
500 Returns a copy of this Translation.
502 return Translation(None, clone_from=self)
  /external/jmonkeyengine/engine/src/core/com/jme3/animation/
AnimationFactory.java 41 * you can add some keyFrames for a given time or a given keyFrameIndex, for translation rotation and scale.
67 Translation, Rotation, Scale;
130 * Translation array for this animation
203 * Adds a key frame for the given translation at the given time
205 * @param translation the translation to use for this keyFrame
207 public void addTimeTranslation(float time, Vector3f translation) {
208 addKeyFrameTranslation((int) (time / tpf), translation);
212 * Adds a key frame for the given translation at the given keyFrame index
214 * @param translation the translation to use for this keyFram
    [all...]

Completed in 83 milliseconds