303132333435363738394041
//Draw Line l = new Line(LastMousePosition, p, group); int size = drawingBoard.getChildrenSize(); if(size != 0) { Object temp = (Object) drawingBoard.getGraphicObjectByIndex(size-1); if( temp.getGroup() == group) { drawingBoard.remove(temp); } }
313233343536373839404142
//Draw Rect r = new Rect(LastMousePosition, p, group); int size = drawingBoard.getChildrenSize(); if(size != 0) { Object temp = (Object) drawingBoard.getGraphicObjectByIndex(size-1); if( temp.getGroup() == group) { drawingBoard.remove(temp); } }