Package kr.toxicity.library.dynamicuv
Interface UVAxis.LineConsumer
- Enclosing class:
UVAxis
public static interface UVAxis.LineConsumer
A functional interface for consuming line coordinates.
-
Method Summary
Modifier and TypeMethodDescriptionvoidconsume(float h, float v) Consumes the horizontal and vertical coordinates.
-
Method Details
-
consume
void consume(float h, float v) Consumes the horizontal and vertical coordinates.- Parameters:
h- the horizontal coordinatev- the vertical coordinate
-