mirror of
https://github.com/sojamo/controlp5
synced 2024-11-17 11:47:56 +01:00
20 lines
604 B
Java
20 lines
604 B
Java
|
package controlP5;
|
||
|
|
||
|
public class Group extends ControlGroup< Group > {
|
||
|
|
||
|
/**
|
||
|
* Convenience constructor to extend Group.
|
||
|
*
|
||
|
* @example use/ControlP5extendController
|
||
|
*/
|
||
|
public Group( ControlP5 theControlP5 , String theName ) {
|
||
|
this( theControlP5 , theControlP5.getDefaultTab( ) , theName , 0 , 0 , 99 , 9 );
|
||
|
theControlP5.register( theControlP5.papplet , theName , this );
|
||
|
}
|
||
|
|
||
|
public Group( ControlP5 theControlP5 , ControllerGroup< ? > theParent , String theName , int theX , int theY , int theW , int theH ) {
|
||
|
super( theControlP5 , theParent , theName , theX , theY , theW , theH );
|
||
|
}
|
||
|
|
||
|
}
|