Home | History | Annotate | Download | only in resources

Lines Matching defs:Edge

23   class Edge {
25 Edge() : x_(0), y_(0), z_(0) {}
26 Edge(const gfx::PointF& p, const gfx::PointF& q);
60 gfx::PointF Intersect(const Edge& e) const {
72 LayerQuad(const Edge& left,
73 const Edge& top,
74 const Edge& right,
75 const Edge& bottom);
78 Edge left() const { return left_; }
79 Edge top() const { return top_; }
80 Edge right() const { return right_; }
81 Edge bottom() const { return bottom_; }
104 Edge left_;
105 Edge top_;
106 Edge right_;
107 Edge bottom_;