.colormap.0.9.61.source-code.module-info Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of colormap Show documentation
Show all versions of colormap Show documentation
A Java-based colormap generator.
/**
* A colormap module to provide the easy construction of linear and categorical colormaps.
*/
module net.mahdilamb.colormap {
requires java.desktop;
exports net.mahdilamb.colormap;
exports net.mahdilamb.colormap.reference;
exports net.mahdilamb.colormap.reference.cyclic;
exports net.mahdilamb.colormap.reference.diverging;
exports net.mahdilamb.colormap.reference.qualitative;
exports net.mahdilamb.colormap.reference.sequential;
}