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

eu.printingin3d.physics.Current Maven / Gradle / Ivy

There is a newer version: 0.2.1.0
Show newest version
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