forked from sghr/iGeo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
IGravity.java
146 lines (118 loc) · 7.43 KB
/
IGravity.java
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
/*---
iGeo - http://igeo.jp
Copyright (c) 2002-2013 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;
import java.awt.Color;
/**
Attractor field defined by a center point.
@author Satoru Sugihara
*/
public class IGravity extends I3DField{
IPoint point; // just to visualize when it has position
//IVecI gravity;
//public IGravity(){ super(null); gravity = new IVec(0,0,-10); } // default
//public IGravity(IVecI p){ super(null); gravity = p; }
//public IGravity(double x, double y, double z){ super(nnull); gravity = new IVec(x,y,z); }
//public IGravity(double gravity){ super(null); this.gravity = new IVec(0,0,-gravity); }
public IGravity(){ super(new IPointFieldGeo(null, new IVec(0,0,-10))); field.constantIntensity(false); } // default
public IGravity(IVecI gravity){ super(new IPointFieldGeo(null,gravity)); field.constantIntensity(false); }
public IGravity(double x, double y, double z){ super(new IPointFieldGeo(null, new IVec(x,y,z))); field.constantIntensity(false); }
public IGravity(double gravity){ super(new IPointFieldGeo(null, new IVec(0,0,-gravity))); field.constantIntensity(false); }
public IGravity(IVecI pos, IVecI gravity){
super(new IPointFieldGeo(pos,gravity)); field.constantIntensity(false);
point = new IPoint(pos);
}
public IGravity(double xpos, double ypos, double zpos, double xdir, double ydir, double zdir){
super(new IPointFieldGeo(new IVec(xpos,ypos,zpos), new IVec(xdir,ydir,zdir)));
field.constantIntensity(false);
point = new IPoint(((IPointFieldGeo)field).pos());
}
//public IVecI get(IVecI v){ return gravity; }
// those have no effect
public IGravity noDecay(){ super.noDecay(); return this; }
public IGravity linearDecay(double threshold){ super.linearDecay(threshold); return this; }
public IGravity linear(double threshold){ super.linear(threshold); return this; }
public IGravity gaussianDecay(double threshold){ super.gaussianDecay(threshold); return this; }
public IGravity gaussian(double threshold){ super.gaussian(threshold); return this; }
public IGravity gauss(double threshold){ super.gauss(threshold); return this; }
public IGravity constantIntensity(boolean b){ super.constantIntensity(b); return this; }
/** if bidirectional is on, field force vector is flipped when velocity of particle is going opposite */
public IGravity bidirectional(boolean b){ super.bidirectional(b); return this; }
public IGravity threshold(double t){ super.threshold(t); return this; }
public IGravity intensity(double i){ super.intensity(i); return this; }
public IGravity name(String nm){ super.name(nm); point.name(nm); return this; }
public IGravity layer(ILayer l){ super.layer(l); point.layer(l); return this; }
public IGravity show(){ point.show(); return this; }
public IGravity hide(){ point.hide(); return this; }
public void del(){ point.del(); super.del(); }
/**************************************
* methods of IPoint
*************************************/
public IGravity setSize(double sz){ return size(sz); }
public IGravity size(double sz){ point.size(sz); return this; }
public double getSize(){ return point.size(); }
public double size(){ return point.size(); }
public IGravity clr(Color c){ super.clr(c); point.clr(c); return this; }
public IGravity clr(Color c, int alpha){ super.clr(c,alpha); point.clr(c,alpha); return this; }
public IGravity clr(int gray){ super.clr(gray); point.clr(gray); return this; }
public IGravity clr(float fgray){ super.clr(fgray); point.clr(fgray); return this; }
public IGravity clr(double dgray){ super.clr(dgray); point.clr(dgray); return this; }
public IGravity clr(int gray, int alpha){ super.clr(gray,alpha); point.clr(gray,alpha); return this; }
public IGravity clr(float fgray, float falpha){ super.clr(fgray,falpha); point.clr(fgray,falpha); return this; }
public IGravity clr(double dgray, double dalpha){ super.clr(dgray,dalpha); point.clr(dgray,dalpha); return this; }
public IGravity clr(int r, int g, int b){ super.clr(r,g,b); point.clr(r,g,b); return this; }
public IGravity clr(float fr, float fg, float fb){ super.clr(fr,fg,fb); point.clr(fr,fg,fb); return this; }
public IGravity clr(double dr, double dg, double db){ super.clr(dr,dg,db); point.clr(dr,dg,db); return this; }
public IGravity clr(int r, int g, int b, int a){
super.clr(r,g,b,a); point.clr(r,g,b,a); return this;
}
public IGravity clr(float fr, float fg, float fb, float fa){
super.clr(fr,fg,fb,fa); point.clr(fr,fg,fb,fa); return this;
}
public IGravity clr(double dr, double dg, double db, double da){
super.clr(dr,dg,db,da); point.clr(dr,dg,db,da); return this;
}
public IGravity hsb(float h, float s, float b, float a){
super.hsb(h,s,b,a); point.hsb(h,s,b,a); return this;
}
public IGravity hsb(double h, double s, double b, double a){
super.hsb(h,s,b,a); point.hsb(h,s,b,a); return this;
}
public IGravity hsb(float h, float s, float b){
super.hsb(h,s,b); point.hsb(h,s,b); return this;
}
public IGravity hsb(double h, double s, double b){
super.hsb(h,s,b); point.hsb(h,s,b); return this;
}
public IGravity setColor(Color c){ return clr(c); }
public IGravity setColor(Color c, int alpha){ return clr(c,alpha); }
public IGravity setColor(int gray){ return clr(gray); }
public IGravity setColor(float fgray){ return clr(fgray); }
public IGravity setColor(double dgray){ return clr(dgray); }
public IGravity setColor(int gray, int alpha){ return clr(gray,alpha); }
public IGravity setColor(float fgray, float falpha){ return clr(fgray,falpha); }
public IGravity setColor(double dgray, double dalpha){ return clr(dgray,dalpha); }
public IGravity setColor(int r, int g, int b){ return clr(r,g,b); }
public IGravity setColor(float fr, float fg, float fb){ return clr(fr,fg,fb); }
public IGravity setColor(double dr, double dg, double db){ return clr(dr,dg,db); }
public IGravity setColor(int r, int g, int b, int a){ return clr(r,g,b,a); }
public IGravity setColor(float fr, float fg, float fb, float fa){ return clr(fr,fg,fb,fa); }
public IGravity setColor(double dr, double dg, double db, double da){ return clr(dr,dg,db,da); }
public IGravity setHSBColor(float h, float s, float b, float a){ return hsb(h,s,b,a); }
public IGravity setHSBColor(double h, double s, double b, double a){ return hsb(h,s,b,a); }
public IGravity setHSBColor(float h, float s, float b){ return hsb(h,s,b); }
public IGravity setHSBColor(double h, double s, double b){ return hsb(h,s,b); }
public IGravity weight(double w){ super.weight(w); point.weight(w); return this; }
public IGravity weight(float w){ super.weight(w); point.weight(w); return this; }
}