@@ -88,32 +88,32 @@ public T Value {
88
88
/// unitary length and strenght.
89
89
/// </summary>
90
90
/// <param name="p1">
91
- /// A <see cref="Particle"/> representing one particle.
91
+ /// A <see cref="T:Smog. Particle"/> representing one particle.
92
92
/// </param>
93
93
/// <param name="p2">
94
- /// A <see cref="Particle"/> representing the other particle.
94
+ /// A <see cref="T:Smog. Particle"/> representing the other particle.
95
95
/// </param>
96
96
public Spring ( Particle < S > p1 , Particle < S > p2 )
97
97
{
98
98
Particle1 = p1 ;
99
99
Particle2 = p2 ;
100
100
Strenght = 1 ;
101
101
Length = 1 ;
102
- Damping = Length / 10 ;
102
+ Damping = 1 ; // Length / 10;
103
103
}
104
104
105
105
/// <summary>
106
106
/// Creates a new spring between the two given particles, of unitary
107
107
/// length and given strenght.
108
108
/// </summary>
109
109
/// <param name="particle1">
110
- /// A <see cref="Particle"/> representing one particle.
110
+ /// A <see cref="T:Smog. Particle"/> representing one particle.
111
111
/// </param>
112
112
/// <param name="particle2">
113
- /// A <see cref="Particle"/> representing the other particle.
113
+ /// A <see cref="T:Smog. Particle"/> representing the other particle.
114
114
/// </param>
115
115
/// <param name="strenght">
116
- /// A <see cref="System.Double"/> representing the strenght of the
116
+ /// A <see cref="T: System.Double"/> representing the strenght of the
117
117
/// spring.
118
118
/// </param>
119
119
public Spring ( Particle < S > particle1 , Particle < S > particle2 , double strenght )
@@ -127,17 +127,17 @@ public Spring (Particle<S> particle1, Particle<S> particle2, double strenght)
127
127
/// and strenght.
128
128
/// </summary>
129
129
/// <param name="particle1">
130
- /// A <see cref="Particle"/> representing one particle.
130
+ /// A <see cref="T:Smog. Particle"/> representing one particle.
131
131
/// </param>
132
132
/// <param name="particle2">
133
- /// A <see cref="Particle"/> representing the other particle.
133
+ /// A <see cref="T:Smog. Particle"/> representing the other particle.
134
134
/// </param>
135
135
/// <param name="strenght">
136
- /// A <see cref="System.Double"/> representing the strenght of the
136
+ /// A <see cref="T: System.Double"/> representing the strenght of the
137
137
/// spring.
138
138
/// </param>
139
139
/// <param name="length">
140
- /// A <see cref="System.Double"/> representing the length of the
140
+ /// A <see cref="T: System.Double"/> representing the length of the
141
141
/// spring.
142
142
/// </param>
143
143
public Spring ( Particle < S > particle1 , Particle < S > particle2 , double strenght , double length )
@@ -152,21 +152,21 @@ public Spring (Particle<S> particle1, Particle<S> particle2, double strenght, do
152
152
/// and strenght. The damping factor is equal to the given one.
153
153
/// </summary>
154
154
/// <param name="particle1">
155
- /// A <see cref="Particle"/> representing one particle.
155
+ /// A <see cref="T:Smog. Particle"/> representing one particle.
156
156
/// </param>
157
157
/// <param name="particle2">
158
- /// A <see cref="Particle"/> representing the other particle.
158
+ /// A <see cref="T:Smog. Particle"/> representing the other particle.
159
159
/// </param>
160
160
/// <param name="strenght">
161
- /// A <see cref="System.Double"/> representing the strenght of the
161
+ /// A <see cref="T: System.Double"/> representing the strenght of the
162
162
/// spring.
163
163
/// </param>
164
164
/// <param name="length">
165
- /// A <see cref="System.Double"/> representing the length of the
165
+ /// A <see cref="T: System.Double"/> representing the length of the
166
166
/// spring.
167
167
/// </param>
168
168
/// <param name="damping">
169
- /// A <see cref="System.Double"/> representing the damping factor of
169
+ /// A <see cref="T: System.Double"/> representing the damping factor of
170
170
/// the spring.
171
171
/// </param>
172
172
public Spring ( Particle < S > particle1 , Particle < S > particle2 , double strenght , double length , double damping )
0 commit comments