forked from I2P_Developers/i2p.i2p
17 lines
349 B
Java
17 lines
349 B
Java
package net.i2p.router.web;
|
|
|
|
/**
|
|
* Basic graph defaults
|
|
*
|
|
* @since 0.9.33 pulled out of GraphHelper
|
|
*/
|
|
public class GraphConstants {
|
|
|
|
private GraphConstants() {}
|
|
|
|
public static final int DEFAULT_X = 400;
|
|
public static final int DEFAULT_Y = 100;
|
|
public static final int MAX_X = 2048;
|
|
public static final int MAX_Y = 1024;
|
|
}
|