Home
last modified time | relevance | path

Searched refs:currentpoint (Results 1 – 2 of 2) sorted by relevance

/petsc/src/sys/classes/draw/interface/
H A Ddline.c61 *x = draw->currentpoint_x[draw->currentpoint]; in PetscDrawGetCurrentPoint()
62 *y = draw->currentpoint_y[draw->currentpoint]; in PetscDrawGetCurrentPoint()
84 draw->currentpoint_x[draw->currentpoint] = x; in PetscDrawSetCurrentPoint()
85 draw->currentpoint_y[draw->currentpoint] = y; in PetscDrawSetCurrentPoint()
107 …PetscCheck(draw->currentpoint <= 19, PETSC_COMM_SELF, PETSC_ERR_SUP, "You have pushed too many cur… in PetscDrawPushCurrentPoint()
108 draw->currentpoint_x[++draw->currentpoint] = x; in PetscDrawPushCurrentPoint()
109 draw->currentpoint_y[draw->currentpoint] = y; in PetscDrawPushCurrentPoint()
129 …PetscCheck(draw->currentpoint-- > 0, PETSC_COMM_SELF, PETSC_ERR_SUP, "You have popped too many cur… in PetscDrawPopCurrentPoint()
/petsc/include/petsc/private/
H A Ddrawimpl.h60 PetscInt currentpoint; member