forked from sghr/iGeo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIFieldGeo.java
More file actions
84 lines (59 loc) · 3.07 KB
/
IFieldGeo.java
File metadata and controls
84 lines (59 loc) · 3.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/*---
iGeo - http://igeo.jp
Copyright (c) 2002-2012 Satoru Sugihara
This file is part of iGeo.
iGeo is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as
published by the Free Software Foundation, version 3.
iGeo is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with iGeo. If not, see <http://www.gnu.org/licenses/>.
---*/
package igeo;
/**
abstract class of 2D vector filed.
@author Satoru Sugihara
*/
abstract public class IFieldGeo implements IFieldI{
/** type of decay from surface position */
static public enum Decay{ None, Linear, Gaussian };
public Decay decay = Decay.None; // default
/** threshold for decay.
When decay is None, threshold isn't used.
In case of Linear, when distance is equal to threshold, output is zero.
In Gaussian, threshold is used as double of standard deviation (when distance is eqaul to threshold, output is 13.5% of original).
*/
public double threshold; // = IConfig.defaultFieldThreshold;
/** intensity of vector output */
public double intensity = IConfig.defaultFieldIntensity;
/** if output vector is besed on constant length (intensity) or variable depending geometry when curve or surface tangent is used */
public boolean constantIntensity = IConfig.defaultConstantFieldIntensity; // default
//public IFieldGeo(){}
/** set no decay */
public IFieldGeo noDecay(){ decay = Decay.None; return this; }
/** set linear decay; When distance is equal to threshold, output is zero.*/
public IFieldGeo linearDecay(double threshold){
decay = Decay.Linear; this.threshold = threshold; return this;
}
/** alias of linearDecay */
public IFieldGeo linear(double threshold){ return linearDecay(threshold); }
/** set Gaussian decay; Threshold is used as double of standard deviation (when distance is eqaul to threshold, output is 13.5% of original).
*/
public IFieldGeo gaussianDecay(double threshold){
decay = Decay.Gaussian; this.threshold = threshold; return this;
}
/** alias of gaussianDecay */
public IFieldGeo gaussian(double threshold){ return gaussianDecay(threshold); }
public Decay decay(){ return decay; }
/** if output vector is besed on constant length (intensity) or variable depending geometry when curve or surface tangent is used */
public IFieldGeo constantIntensity(boolean b){ constantIntensity=b; return this; }
/** set decay threshold */
public IFieldGeo threshold(double t){ threshold=t; return this; }
public double threshold(){ return threshold; }
/** set output intensity */
public IFieldGeo intensity(double i){ intensity=i; return this; }
public double intensity(){ return intensity; }
}