OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Vector2
(Results
1 - 12
of
12
) sorted by null
/external/chromium_org/native_client_sdk/src/examples/demo/flock/
vector2.h
15
class
Vector2
{
17
Vector2
() : x_(0.0), y_(0.0) {}
18
Vector2
(double x, double y) : x_(x), y_(y) {}
19
~
Vector2
() {}
22
static
Vector2
Difference(const
Vector2
& a, const
Vector2
& b) {
23
Vector2
diff(a.x() - b.x(), a.y() - b.y());
33
void Add(const
Vector2
& vec) {
/external/eigen/Eigen/src/Geometry/
EulerAngles.h
39
typedef Matrix<typename Derived::Scalar,2,1>
Vector2
;
49
Scalar s =
Vector2
(coeff(j,i) , coeff(k,i)).norm();
64
Scalar c =
Vector2
(coeff(i,i) , coeff(i,j)).norm();
OrthoMethods.h
134
typedef Matrix<Scalar,2,1>
Vector2
;
143
RealScalar invnm = RealScalar(1)/(
Vector2
() << src.coeff(sndi),src.coeff(maxi)).finished().norm();
Rotation2D.h
52
typedef Matrix<Scalar,2,1>
Vector2
;
82
Vector2
operator* (const
Vector2
& vec) const
/external/eigen/Eigen/src/Eigen2Support/Geometry/
Rotation2D.h
47
typedef Matrix<Scalar,2,1>
Vector2
;
77
Vector2
operator* (const
Vector2
& vec) const
/external/jmonkeyengine/engine/src/core/com/jme3/shader/
VarType.java
38
Vector2
,
/external/replicaisland/src/com/replica/replicaisland/
Vector2.java
22
public final class
Vector2
extends AllocationGuard {
26
public static final
Vector2
ZERO = new
Vector2
(0, 0);
28
public
Vector2
() {
32
public
Vector2
(float xValue, float yValue) {
36
public
Vector2
(
Vector2
other) {
40
public final void add(
Vector2
other) {
50
public final void subtract(
Vector2
other) {
60
public final void multiply(
Vector2
other)
[
all
...]
/frameworks/base/libs/hwui/
Vector.h
27
struct
Vector2
{
31
Vector2
() :
35
Vector2
(float px, float py) :
43
void operator+=(const
Vector2
& v) {
48
void operator-=(const
Vector2
& v) {
73
Vector2
operator+(const
Vector2
& v) const {
74
return
Vector2
(x + v.x, y + v.y);
77
Vector2
operator-(const
Vector2
& v) const
[
all
...]
/external/eigen/demos/mandelbrot/
mandelbrot.cpp
43
typedef Eigen::Array<Real, 2, 1>
Vector2
;
44
Vector2
start(widget->center.x() - widget->xradius, widget->center.y() - yradius);
45
Vector2
step(2*widget->xradius/img_width, 2*yradius/img_height);
/external/eigen/test/eigen2/
eigen2_geometry.cpp
24
typedef Matrix<Scalar,2,1>
Vector2
;
43
Vector2
u0 =
Vector2
::Random();
236
Vector2
v20 =
Vector2
::Random();
237
Vector2
v21 =
Vector2
::Random();
eigen2_geometry_with_eigen2_prefix.cpp
26
typedef Matrix<Scalar,2,1>
Vector2
;
45
Vector2
u0 =
Vector2
::Random();
238
Vector2
v20 =
Vector2
::Random();
239
Vector2
v21 =
Vector2
::Random();
/external/eigen/test/
geo_transformations.cpp
23
typedef Matrix<Scalar,2,1>
Vector2
;
94
typedef Matrix<Scalar,2,1>
Vector2
;
249
Vector2
v20 =
Vector2
::Random();
250
Vector2
v21 =
Vector2
::Random();
Completed in 832 milliseconds