/frameworks/base/core/jni/android/opengl/ |
poly.h | 19 * Generic Convex Polygon Scan Conversion and Clipping 30 #define POLY_NMAX 10 /* max #sides to a polygon; change if needed */ 34 typedef struct { /* A POLYGON VERTEX */ 38 typedef struct { /* A POLYGON */ 43 #define POLY_CLIP_OUT 0 /* polygon entirely outside box */ 44 #define POLY_CLIP_PARTIAL 1 /* polygon partially inside */ 45 #define POLY_CLIP_IN 2 /* polygon entirely inside box */
|
poly_clip.cpp | 19 * Generic Convex Polygon Scan Conversion and Clipping 25 * poly_clip.c: homogeneous 3-D convex polygon clipper 48 * poly_clip_to_halfspace: clip convex polygon p against a plane, 74 /* on old polygon (p), u is previous vertex, v is current vertex */ 94 * poly_clip_to_frustum: Clip the convex polygon p1 to the screen space frustum 97 * and similar tests for y and z, for each vertex v of the polygon. 98 * If polygon is entirely inside box, then POLY_CLIP_IN is returned. 99 * If polygon is entirely outside box, then POLY_CLIP_OUT is returned. 100 * Otherwise, if the polygon is cut by the box, p1 is modified and 137 * now clip against each of the planes that might cut the polygon, [all...] |
/frameworks/base/awt/java/awt/ |
Polygon.java | 38 * The Polygon class defines an closed area specified by n vertices and n edges. 42 * the point (x[0], y[0]) point. The Polygon is empty if the number of vertices 47 public class Polygon implements Shape, Serializable { 60 * The number of Polygon vertices. 75 * The smallest Rectangle that completely contains this Polygon. 80 * Polygon path iterator 88 * The source Polygon object. 90 public Polygon p; 103 * Constructs a new Polygon.Iterator for the given polygon an [all...] |
Graphics.java | 162 * Draws the outline of a polygon which is defined by Polygon object. 165 * the Polygon object. 167 public void drawPolygon(Polygon p) { 243 * Fills the polygon with the current color. 246 * the Polygon object. 248 public void fillPolygon(Polygon p) { 650 * Draws the outline of a polygon. The polygon vertices are defined by 651 * points with xpoints[i], ypoints[i] as coordinates. The polygon edges ar [all...] |
/external/skia/src/svg/ |
SkSVGPolygon.cpp | 27 DEFINE_SVG_INFO(Polygon) 35 parser._startElement("polygon");
|
SkSVGPolygon.h | 24 DECLARE_SVG_INFO(Polygon);
|
/external/webkit/WebCore/svg/ |
svgtags.in | 91 polygon createWithNew
|
/external/skia/src/animator/ |
SkDrawPath.h | 71 DECLARE_MEMBER_INFO(Polygon);
|
SkMatrixParts.cpp | 231 SK_MEMBER(destination, Polygon), 232 SK_MEMBER(source, Polygon)
|
SkDisplayType.cpp | 170 CASE_NEW(Polygon); 325 CASE_GET_INFO(Polygon); 492 { "polygon", SkType_Polygon INIT_BOOL_FIELDS },
|
/external/quake/quake/src/QW/client/ |
r_shared.h | 29 #define MAXVERTS 16 // max points in a surface polygon 31 // polygon (while processing)
|
d_edge.c | 251 // FIXME: we don't want to do all this for every polygon! 289 // FIXME: we don't want to do all this for every polygon!
|
r_draw.c | 730 // reconstruct the polygon 752 // clip the polygon, done if not visible 865 // build the polygon descriptor, including fa, r_nearzi, and u, v, s, t, and z 872 // draw the polygon 899 // draw the polygon
|
d_scan.c | 205 // can't step off polygon), clamp, calculate s and t steps across 339 // can't step off polygon), clamp, calculate s and t steps across
|
r_bsp.c | 352 // draw the polygon 430 // draw the polygon
|
/external/quake/quake/src/WinQuake/ |
r_shared.h | 29 #define MAXVERTS 16 // max points in a surface polygon
31 // polygon (while processing)
|
d_edge.cpp | 247 // FIXME: we don't want to do all this for every polygon!
284 // FIXME: we don't want to do all this for every polygon!
|
r_draw.cpp | 730 // reconstruct the polygon
752 // clip the polygon, done if not visible
865 // build the polygon descriptor, including fa, r_nearzi, and u, v, s, t, and z
872 // draw the polygon
899 // draw the polygon
|
d_scan.cpp | 207 // can't step off polygon), clamp, calculate s and t steps across
341 // can't step off polygon), clamp, calculate s and t steps across
|
r_bsp.cpp | 352 // draw the polygon
430 // draw the polygon
|
/frameworks/base/awt/org/apache/harmony/awt/gl/ |
CommonGraphics2D.java | 35 import java.awt.Polygon; 565 draw(new Polygon(xpoints, ypoints, npoints)); 569 public void drawPolygon(Polygon polygon) { 570 draw(polygon); 748 fill(new Polygon(xpoints, ypoints, npoints)); 752 public void fillPolygon(Polygon polygon) { 753 fill(polygon); [all...] |
/external/skia/bench/ |
RectBench.cpp | 123 return SkNEW_ARGS(PointsBench, (p, SkCanvas::kPolygon_PointMode, "polygon"));
|
/external/webkit/WebCore/platform/graphics/wx/ |
GraphicsContextWx.cpp | 247 wxPoint* polygon = new wxPoint[npoints]; 249 polygon[i] = wxPoint(points[i].x(), points[i].y()); 251 m_data->context->DrawPolygon((int)npoints, polygon); 252 delete [] polygon;
|
/frameworks/base/opengl/libagl/ |
primitives.cpp | 860 // two new vertices (because the polygon is convex). 862 // the polygon degenerates into something non convex. 866 // original list of vertices (polygon to clip, in fact this 867 // function works with an arbitrary polygon). 919 return; // non-convex polygon! 930 return; // non-convex polygon! [all...] |
/external/proguard/src/proguard/gui/splash/ |
OverrideGraphics2D.java | 349 public void drawPolygon(Polygon p) 429 public void fillPolygon(Polygon p)
|