Lines Matching refs:Point
14 typedef struct Point Point; typedef
22 #pragma varargck type "P" Point
154 struct Point struct
162 Point min; argument
163 Point max;
369 extern int originwindow(Image*, Point, Point);
374 extern Point Pt(int, int);
376 extern Rectangle Rpt(Point, Point);
377 extern Point addpt(Point, Point);
378 extern Point subpt(Point, Point);
379 extern Point divpt(Point, int);
380 extern Point mulpt(Point, int);
381 extern int eqpt(Point, Point);
384 extern Rectangle rectaddpt(Rectangle, Point);
385 extern Rectangle rectsubpt(Rectangle, Point);
391 extern int ptinrect(Point, Rectangle);
394 extern Point drawrepl(Rectangle, Point);
404 extern void draw(Image*, Rectangle, Image*, Image*, Point);
405 extern void drawop(Image*, Rectangle, Image*, Image*, Point, Drawop);
406 extern void gendraw(Image*, Rectangle, Image*, Point, Image*, Point);
407 extern void gendrawop(Image*, Rectangle, Image*, Point, Image*, Point, Drawop);
408 extern void line(Image*, Point, Point, int, int, int, Image*, Point);
409 extern void lineop(Image*, Point, Point, int, int, int, Image*, Point, Drawop);
410 extern void poly(Image*, Point*, int, int, int, int, Image*, Point);
411 extern void polyop(Image*, Point*, int, int, int, int, Image*, Point, Drawop);
412 extern void fillpoly(Image*, Point*, int, int, Image*, Point);
413 extern void fillpolyop(Image*, Point*, int, int, Image*, Point, Drawop);
414 extern Point string(Image*, Point, Image*, Point, Font*, char*);
415 extern Point stringop(Image*, Point, Image*, Point, Font*, char*, Drawop);
416 extern Point stringn(Image*, Point, Image*, Point, Font*, char*, int);
417 extern Point stringnop(Image*, Point, Image*, Point, Font*, char*, int, Drawop);
418 extern Point runestring(Image*, Point, Image*, Point, Font*, Rune*);
419 extern Point runestringop(Image*, Point, Image*, Point, Font*, Rune*, Drawop);
420 extern Point runestringn(Image*, Point, Image*, Point, Font*, Rune*, int);
421 extern Point runestringnop(Image*, Point, Image*, Point, Font*, Rune*, int, Drawop);
422 extern Point stringbg(Image*, Point, Image*, Point, Font*, char*, Image*, Point);
423 extern Point stringbgop(Image*, Point, Image*, Point, Font*, char*, Image*, Point, Drawop);
424 extern Point stringnbg(Image*, Point, Image*, Point, Font*, char*, int, Image*, Point);
425 extern Point stringnbgop(Image*, Point, Image*, Point, Font*, char*, int, Image*, Point, Drawop);
426 extern Point runestringbg(Image*, Point, Image*, Point, Font*, Rune*, Image*, Point);
427 extern Point runestringbgop(Image*, Point, Image*, Point, Font*, Rune*, Image*, Point, Drawop);
428 extern Point runestringnbg(Image*, Point, Image*, Point, Font*, Rune*, int, Image*, Point);
429 extern Point runestringnbgop(Image*, Point, Image*, Point, Font*, Rune*, int, Image*, Point, Drawop…
430 extern Point _string(Image*, Point, Image*, Point, Font*, char*, Rune*, int, Rectangle, Image*, Poi…
431 extern Point stringsubfont(Image*, Point, Image*, Subfont*, char*);
432 extern int bezier(Image*, Point, Point, Point, Point, int, int, int, Image*, Point);
433 extern int bezierop(Image*, Point, Point, Point, Point, int, int, int, Image*, Point, Drawop);
434 extern int bezspline(Image*, Point*, int, int, int, int, Image*, Point);
435 extern int bezsplineop(Image*, Point*, int, int, int, int, Image*, Point, Drawop);
436 extern int bezsplinepts(Point*, int, Point**);
437 extern int fillbezier(Image*, Point, Point, Point, Point, int, Image*, Point);
438 extern int fillbezierop(Image*, Point, Point, Point, Point, int, Image*, Point, Drawop);
439 extern int fillbezspline(Image*, Point*, int, int, Image*, Point);
440 extern int fillbezsplineop(Image*, Point*, int, int, Image*, Point, Drawop);
441 extern void ellipse(Image*, Point, int, int, int, Image*, Point);
442 extern void ellipseop(Image*, Point, int, int, int, Image*, Point, Drawop);
443 extern void fillellipse(Image*, Point, int, int, Image*, Point);
444 extern void fillellipseop(Image*, Point, int, int, Image*, Point, Drawop);
445 extern void arc(Image*, Point, int, int, int, Image*, Point, int, int);
446 extern void arcop(Image*, Point, int, int, int, Image*, Point, int, int, Drawop);
447 extern void fillarc(Image*, Point, int, int, Image*, Point, int, int);
448 extern void fillarcop(Image*, Point, int, int, Image*, Point, int, int, Drawop);
449 extern void border(Image*, Rectangle, int, Image*, Point);
450 extern void borderop(Image*, Rectangle, int, Image*, Point, Drawop);
470 extern Point stringsize(Font*, char*);
473 extern Point runestringsize(Font*, Rune*);
476 extern Point strsubfontwidth(Subfont*, char*);
490 extern Point ZP;