mirror of
https://github.com/sojamo/controlp5
synced 2024-11-22 14:07:55 +01:00
minor typos
This commit is contained in:
parent
d2a7f2a3d9
commit
d8e7581073
@ -2,9 +2,9 @@ package controlP5;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* controlP5 is a processing gui library.
|
* controlP5 is a processing gui library.
|
||||||
*
|
*
|
||||||
* 2006-2015 by Andreas Schlegel
|
* 2006-2015 by Andreas Schlegel
|
||||||
*
|
*
|
||||||
* This library is free software; you can redistribute it and/or
|
* This library is free software; you can redistribute it and/or
|
||||||
* modify it under the terms of the GNU Lesser General Public License
|
* modify it under the terms of the GNU Lesser General Public License
|
||||||
* as published by the Free Software Foundation; either version 2.1
|
* as published by the Free Software Foundation; either version 2.1
|
||||||
@ -13,16 +13,16 @@ package controlP5;
|
|||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
* Lesser General Public License for more details.
|
* Lesser General Public License for more details.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General
|
* You should have received a copy of the GNU Lesser General
|
||||||
* Public License along with this library; if not, write to the
|
* Public License along with this library; if not, write to the
|
||||||
* Free Software Foundation, Inc., 59 Temple Place, Suite 330,
|
* Free Software Foundation, Inc., 59 Temple Place, Suite 330,
|
||||||
* Boston, MA 02111-1307 USA
|
* Boston, MA 02111-1307 USA
|
||||||
*
|
*
|
||||||
* @author Andreas Schlegel (http://www.sojamo.de)
|
* @author Andreas Schlegel (http://www.sojamo.de)
|
||||||
* @modified ##date##
|
* @modified ##date##
|
||||||
* @version ##version##
|
* @version ##version##
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import static controlP5.ControlP5.b;
|
import static controlP5.ControlP5.b;
|
||||||
@ -41,7 +41,7 @@ import processing.event.KeyEvent;
|
|||||||
/**
|
/**
|
||||||
* A ScrollableList is a list of vertically aligned items
|
* A ScrollableList is a list of vertically aligned items
|
||||||
* which can be scrolled if required.
|
* which can be scrolled if required.
|
||||||
*
|
*
|
||||||
* @example controllers/ControlP5scrollableList
|
* @example controllers/ControlP5scrollableList
|
||||||
*/
|
*/
|
||||||
public class ScrollableList extends Controller< ScrollableList > implements ControlListener {
|
public class ScrollableList extends Controller< ScrollableList > implements ControlListener {
|
||||||
|
@ -2,9 +2,9 @@ package controlP5;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* controlP5 is a processing gui library.
|
* controlP5 is a processing gui library.
|
||||||
*
|
*
|
||||||
* 2006-2015 by Andreas Schlegel
|
* 2006-2015 by Andreas Schlegel
|
||||||
*
|
*
|
||||||
* This library is free software; you can redistribute it and/or
|
* This library is free software; you can redistribute it and/or
|
||||||
* modify it under the terms of the GNU Lesser General Public License
|
* modify it under the terms of the GNU Lesser General Public License
|
||||||
* as published by the Free Software Foundation; either version 2.1
|
* as published by the Free Software Foundation; either version 2.1
|
||||||
@ -13,16 +13,16 @@ package controlP5;
|
|||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
* Lesser General Public License for more details.
|
* Lesser General Public License for more details.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General
|
* You should have received a copy of the GNU Lesser General
|
||||||
* Public License along with this library; if not, write to the
|
* Public License along with this library; if not, write to the
|
||||||
* Free Software Foundation, Inc., 59 Temple Place, Suite 330,
|
* Free Software Foundation, Inc., 59 Temple Place, Suite 330,
|
||||||
* Boston, MA 02111-1307 USA
|
* Boston, MA 02111-1307 USA
|
||||||
*
|
*
|
||||||
* @author Andreas Schlegel (http://www.sojamo.de)
|
* @author Andreas Schlegel (http://www.sojamo.de)
|
||||||
* @modified 03/15/2018
|
* @modified ##date##
|
||||||
* @version 2.2.6
|
* @version ##version##
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
import processing.core.PApplet;
|
import processing.core.PApplet;
|
||||||
import processing.core.PGraphics;
|
import processing.core.PGraphics;
|
||||||
@ -63,7 +63,7 @@ public class TickMark implements CDrawable {
|
|||||||
theGraphics.translate( -_myDistance - _myLen , 0 );
|
theGraphics.translate( -_myDistance - _myLen , 0 );
|
||||||
theGraphics.rect( 0 , 0 , _myLen , 1 );
|
theGraphics.rect( 0 , 0 , _myLen , 1 );
|
||||||
if ( isLabel ) {
|
if ( isLabel ) {
|
||||||
|
|
||||||
_myLabel.draw( theGraphics , -_myLabel.getWidth( ) , 0 , _myParent );
|
_myLabel.draw( theGraphics , -_myLabel.getWidth( ) , 0 , _myParent );
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
Loading…
Reference in New Issue
Block a user