Lines Matching defs:draw

10 #define XTRANS(draw, xwin, x) ((int)(((xwin)->w - 1) * ((draw)->port_xl + (((x - (draw)->coor_xl) *…  argument
11 #define YTRANS(draw, xwin, y) (((xwin)->h - 1) - (int)(((xwin)->h - 1) * ((draw)->port_yl + (((y - … argument
13 #define ITRANS(draw, xwin, i) ((draw)->coor_xl + (((PetscReal)(i)) * ((draw)->coor_xr - (draw)->coo… argument
14 #define JTRANS(draw, xwin, j) ((draw)->coor_yl + (((PetscReal)(j)) / ((xwin)->h - 1) + (draw)->port… argument
16 static PetscErrorCode PetscDrawSetViewport_X(PetscDraw draw, PetscReal xl, PetscReal yl, PetscReal … in PetscDrawSetViewport_X()
37 static PetscErrorCode PetscDrawCoordinateToPixel_X(PetscDraw draw, PetscReal x, PetscReal y, int *i… in PetscDrawCoordinateToPixel_X()
47 static PetscErrorCode PetscDrawPixelToCoordinate_X(PetscDraw draw, int i, int j, PetscReal *x, Pets… in PetscDrawPixelToCoordinate_X()
57 static PetscErrorCode PetscDrawPoint_X(PetscDraw draw, PetscReal x, PetscReal y, int c) in PetscDrawPoint_X()
72 static PetscErrorCode PetscDrawPointPixel_X(PetscDraw draw, int x, int y, int c) in PetscDrawPointPixel_X()
82 static PetscErrorCode PetscDrawLine_X(PetscDraw draw, PetscReal xl, PetscReal yl, PetscReal xr, Pet… in PetscDrawLine_X()
97 static PetscErrorCode PetscDrawArrow_X(PetscDraw draw, PetscReal xl, PetscReal yl, PetscReal xr, Pe… in PetscDrawArrow_X()
131 static PetscErrorCode PetscDrawRectangle_X(PetscDraw draw, PetscReal xl, PetscReal yl, PetscReal xr… in PetscDrawRectangle_X()
148 static PetscErrorCode PetscDrawEllipse_X(PetscDraw draw, PetscReal x, PetscReal y, PetscReal a, Pet… in PetscDrawEllipse_X()
167 static PetscErrorCode PetscDrawTriangle_X(PetscDraw draw, PetscReal X1, PetscReal Y_1, PetscReal X2… in PetscDrawTriangle_X()
195 static PetscErrorCode PetscDrawStringSetSize_X(PetscDraw draw, PetscReal x, PetscReal y) in PetscDrawStringSetSize_X()
208 static PetscErrorCode PetscDrawStringGetSize_X(PetscDraw draw, PetscReal *x, PetscReal *y) in PetscDrawStringGetSize_X()
221 static PetscErrorCode PetscDrawString_X(PetscDraw draw, PetscReal x, PetscReal y, int c, const char… in PetscDrawString_X()
246 static PetscErrorCode PetscDrawStringVertical_X(PetscDraw draw, PetscReal x, PetscReal y, int c, co… in PetscDrawStringVertical_X()
263 static PetscErrorCode PetscDrawFlush_X(PetscDraw draw) in PetscDrawFlush_X()
287 static PetscErrorCode PetscDrawClear_X(PetscDraw draw) in PetscDrawClear_X()
319 static PetscErrorCode PetscDrawSetDoubleBuffer_X(PetscDraw draw) in PetscDrawSetDoubleBuffer_X()
335 static PetscErrorCode PetscDrawGetPopup_X(PetscDraw draw, PetscDraw *popup) in PetscDrawGetPopup_X()
355 static PetscErrorCode PetscDrawSetTitle_X(PetscDraw draw, const char title[]) in PetscDrawSetTitle_X()
378 static PetscErrorCode PetscDrawCheckResizedWindow_X(PetscDraw draw) in PetscDrawCheckResizedWindow_X()
411 static PetscErrorCode PetscDrawResizeWindow_X(PetscDraw draw, int w, int h) in PetscDrawResizeWindow_X()
441 static PetscErrorCode PetscDrawGetMouseButton_X(PetscDraw draw, PetscDrawButton *button, PetscReal … in PetscDrawGetMouseButton_X()
522 static PetscErrorCode PetscDrawSetVisible_X(PetscDraw draw, PetscBool visible) in PetscDrawSetVisible_X()
544 static PetscErrorCode PetscDrawPause_X(PetscDraw draw) in PetscDrawPause_X()
559 static PetscErrorCode PetscDrawDestroy_X(PetscDraw draw) in PetscDrawDestroy_X()
576 static PetscErrorCode PetscDrawGetSingleton_X(PetscDraw draw, PetscDraw *sdraw) in PetscDrawGetSingleton_X()
615 static PetscErrorCode PetscDrawRestoreSingleton_X(PetscDraw draw, PetscDraw *sdraw) in PetscDrawRestoreSingleton_X()
674 PETSC_EXTERN PetscErrorCode PetscDrawCreate_X(PetscDraw draw) in PetscDrawCreate_X()