All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ieg.prefuse.data.query.NestedNumberRangeModel Maven / Gradle / Ivy

The newest version!
package ieg.prefuse.data.query;

import prefuse.data.query.NumberRangeModel;

/**
 * 
 * 
 * 

* Added: / TL
* Modifications: *

* * @author Tim Lammarsch * */ public class NestedNumberRangeModel extends NumberRangeModel { private static final long serialVersionUID = 1L; protected Number[] min; protected Number[] max; /** * */ public NestedNumberRangeModel(Number lo, Number hi,Number[] min, Number[] max) { super(lo,hi,lo,hi); this.min = min; this.max = max; recalculateMinMax(); } /** * */ private void recalculateMinMax() { double lmin = 1; double lmax = 1; for(int i=0; i




© 2015 - 2025 Weber Informatics LLC | Privacy Policy