Lines Matching refs:Point
12 typedef struct Point Point; typedef
21 #pragma varargck type "P" Point
153 struct Point struct
161 Point min; argument
162 Point max;
373 extern int originwindow(Image*, Point, Point);
378 extern Point Pt(int, int);
380 extern Rectangle Rpt(Point, Point);
381 extern Point addpt(Point, Point);
382 extern Point subpt(Point, Point);
383 extern Point divpt(Point, int);
384 extern Point mulpt(Point, int);
385 extern int eqpt(Point, Point);
388 extern Rectangle rectaddpt(Rectangle, Point);
389 extern Rectangle rectsubpt(Rectangle, Point);
395 extern int ptinrect(Point, Rectangle);
398 extern Point drawrepl(Rectangle, Point);
408 extern void draw(Image*, Rectangle, Image*, Image*, Point);
409 extern void drawop(Image*, Rectangle, Image*, Image*, Point, Drawop);
410 extern void gendraw(Image*, Rectangle, Image*, Point, Image*, Point);
411 extern void gendrawop(Image*, Rectangle, Image*, Point, Image*, Point, Drawop);
412 extern void line(Image*, Point, Point, int, int, int, Image*, Point);
413 extern void lineop(Image*, Point, Point, int, int, int, Image*, Point, Drawop);
414 extern void poly(Image*, Point*, int, int, int, int, Image*, Point);
415 extern void polyop(Image*, Point*, int, int, int, int, Image*, Point, Drawop);
416 extern void fillpoly(Image*, Point*, int, int, Image*, Point);
417 extern void fillpolyop(Image*, Point*, int, int, Image*, Point, Drawop);
418 extern Point string(Image*, Point, Image*, Point, Font*, char*);
419 extern Point stringop(Image*, Point, Image*, Point, Font*, char*, Drawop);
420 extern Point stringn(Image*, Point, Image*, Point, Font*, char*, int);
421 extern Point stringnop(Image*, Point, Image*, Point, Font*, char*, int, Drawop);
422 extern Point runestring(Image*, Point, Image*, Point, Font*, Rune*);
423 extern Point runestringop(Image*, Point, Image*, Point, Font*, Rune*, Drawop);
424 extern Point runestringn(Image*, Point, Image*, Point, Font*, Rune*, int);
425 extern Point runestringnop(Image*, Point, Image*, Point, Font*, Rune*, int, Drawop);
426 extern Point stringbg(Image*, Point, Image*, Point, Font*, char*, Image*, Point);
427 extern Point stringbgop(Image*, Point, Image*, Point, Font*, char*, Image*, Point, Drawop);
428 extern Point stringnbg(Image*, Point, Image*, Point, Font*, char*, int, Image*, Point);
429 extern Point stringnbgop(Image*, Point, Image*, Point, Font*, char*, int, Image*, Point, Drawop);
430 extern Point runestringbg(Image*, Point, Image*, Point, Font*, Rune*, Image*, Point);
431 extern Point runestringbgop(Image*, Point, Image*, Point, Font*, Rune*, Image*, Point, Drawop);
432 extern Point runestringnbg(Image*, Point, Image*, Point, Font*, Rune*, int, Image*, Point);
433 extern Point runestringnbgop(Image*, Point, Image*, Point, Font*, Rune*, int, Image*, Point, Drawop…
434 extern Point _string(Image*, Point, Image*, Point, Font*, char*, Rune*, int, Rectangle, Image*, Poi…
435 extern Point stringsubfont(Image*, Point, Image*, Subfont*, char*);
436 extern int bezier(Image*, Point, Point, Point, Point, int, int, int, Image*, Point);
437 extern int bezierop(Image*, Point, Point, Point, Point, int, int, int, Image*, Point, Drawop);
438 extern int bezspline(Image*, Point*, int, int, int, int, Image*, Point);
439 extern int bezsplineop(Image*, Point*, int, int, int, int, Image*, Point, Drawop);
440 extern int bezsplinepts(Point*, int, Point**);
441 extern int fillbezier(Image*, Point, Point, Point, Point, int, Image*, Point);
442 extern int fillbezierop(Image*, Point, Point, Point, Point, int, Image*, Point, Drawop);
443 extern int fillbezspline(Image*, Point*, int, int, Image*, Point);
444 extern int fillbezsplineop(Image*, Point*, int, int, Image*, Point, Drawop);
445 extern void ellipse(Image*, Point, int, int, int, Image*, Point);
446 extern void ellipseop(Image*, Point, int, int, int, Image*, Point, Drawop);
447 extern void fillellipse(Image*, Point, int, int, Image*, Point);
448 extern void fillellipseop(Image*, Point, int, int, Image*, Point, Drawop);
449 extern void arc(Image*, Point, int, int, int, Image*, Point, int, int);
450 extern void arcop(Image*, Point, int, int, int, Image*, Point, int, int, Drawop);
451 extern void fillarc(Image*, Point, int, int, Image*, Point, int, int);
452 extern void fillarcop(Image*, Point, int, int, Image*, Point, int, int, Drawop);
453 extern void border(Image*, Rectangle, int, Image*, Point);
454 extern void borderop(Image*, Rectangle, int, Image*, Point, Drawop);
474 extern Point stringsize(Font*, char*);
477 extern Point runestringsize(Font*, Rune*);
480 extern Point strsubfontwidth(Subfont*, char*);
494 extern Point ZP;