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