summaryrefslogtreecommitdiffstats
path: root/media/mca/filterpacks/native/base/geometry.h
blob: 40a934328be7088eca2be48184270a4d1d254251 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
/*
 * Copyright (C) 2011 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#ifndef ANDROID_FILTERFW_FILTERPACKS_BASE_GEOMETRY_H
#define ANDROID_FILTERFW_FILTERPACKS_BASE_GEOMETRY_H

#include <vector>

namespace android {
namespace filterfw {

// This is an initial implementation of some geometrical structures. This is
// likely to grow and become more sophisticated in the future.

class Point {
  public:
    Point() : x_(0.0f), y_(0.0f) {}
    Point(float x, float y) : x_(x), y_(y) {}

    float x() const { return x_; }
    float y() const { return y_; }

    float Length() const;
    bool ScaleTo(float new_length);
    static float Distance(const Point& p0, const Point& p1);

    // Add more of these as needed:
    Point operator+(const Point& other) const;
    Point operator-(const Point& other) const;
    Point operator*(float factor) const;

    void Rotate90Clockwise();

  private:
    float x_, y_;
};

class Quad {
  public:
    Quad() : points_(4) {}
    virtual ~Quad() {}

    Quad(const Point& p0, const Point& p1, const Point& p2, const Point& p3)
        : points_(4) {
      points_[0] = p0;
      points_[1] = p1;
      points_[2] = p2;
      points_[3] = p3;
    }

    const std::vector<Point>& points() const { return points_; }
    const Point& point(int ix) const;

  protected:
    std::vector<Point> points_;
};

class SlantedRect : public Quad {
  public:
    SlantedRect() : width_(0.0f), height_(0.0f) {}
    virtual ~SlantedRect() {}

    bool FromCenterAxisAndLengths(const Point& center,
                                  const Point& vert_axis,
                                  const Point& lenghts);

    float width() const { return width_; }
    float height() const { return height_; }

  private:
    float width_;
    float height_;
};

struct Rect {
  float x, y, width, height;

  Rect() {
    x = y = 0.0f;
    width = height = 1.0f;
  }

  Rect(float x, float y, float width, float height) {
    this->x = x;
    this->y = y;
    this->width = width;
    this->height = height;
  }

  bool ExpandToAspectRatio(float ratio);
  bool ExpandToMinLength(float length);
  bool ScaleWithLengthLimit(float factor, float max_length);
};

} // namespace filterfw
} // namespace android

#endif // ANDROID_FILTERFW_FILTERPACKS_BASE_GEOMETRY_H