summaryrefslogtreecommitdiff
path: root/CSMath/src/bezier/transforms/TDHIdentity.java
blob: c0ae7c2eeb8119c689dc60ebf4342393e2c5c0e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package bezier.transforms;

import bezier.TDHPoint;

/**
 * A transform that does nothing.
 * 
 * @author bjculkin
 *
 */
public class TDHIdentity implements TDHTransform {
	@Override
	public TDHPoint transform(TDHPoint punkt) {
		return punkt;
	}

	@Override
	public String toString() {
		return "TDHIdentity []";
	}
}