eu.printingin3d.physics.Current Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of simplephysics Show documentation
Show all versions of simplephysics Show documentation
Simple Java Objects for SI units like frequency or current.
package eu.printingin3d.physics;
import eu.printingin3d.utils.DoubleFormat;
public class Current extends BasicOperations {
public Current(double value) {
super(value);
}
@Override
protected Current convert(double value) {
return new Current(value);
}
@Override
public String toString() {
return DoubleFormat.formatWithSiPrefixes(value)+'A';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy