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

eu.mihosoft.vrl.v3d.parametrics.LengthParameter Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
package eu.mihosoft.vrl.v3d.parametrics;

import java.util.ArrayList;

public class LengthParameter extends Parameter {

	public LengthParameter(String key, Double defaultValue, ArrayList options) {
		 ArrayList opts=new ArrayList();
		 for(Object d:options)
			 opts.add(d.toString());
		setup(key, new Long((long) (defaultValue*1000.0)), opts);
	}


	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy