Package skyview.geometry.sampler
Class Spline
- java.lang.Object
-
- skyview.geometry.Sampler
-
- skyview.geometry.sampler.Spline
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Cloneable,Component
public class Spline extends Sampler
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Spline()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetDescription()Get the description of this component.java.lang.StringgetName()Get the name of this component.doubleinterpolatedValue(double x, double y)voidsample(int pix)Find the value in the input data to put in the output data.voidsetInput(Image inImage)Construct a sample of a given degree.voidsetOrder(int order)Set the order
-
-
-
Method Detail
-
getName
public java.lang.String getName()
Description copied from interface:ComponentGet the name of this component.
-
getDescription
public java.lang.String getDescription()
Description copied from interface:ComponentGet the description of this component.
-
setInput
public void setInput(Image inImage)
Construct a sample of a given degree. Probably should override the setImage functions and such since we don't handle 3-D images yet.
-
interpolatedValue
public double interpolatedValue(double x, double y)
-
-