Beispiel #1
0
 private unsafe static extern double SDTWindKarman_dsp(SDTWindKarman *x);
Beispiel #2
0
 private unsafe static extern void SDTWindKarman_setWindSpeed(SDTWindKarman *x, double f);
Beispiel #3
0
 private unsafe static extern void SDTWindKarman_free(SDTWindKarman *x);
Beispiel #4
0
 private unsafe static extern void SDTWindKarman_setDiameter(SDTWindKarman *x, double f);
Beispiel #5
0
 public unsafe WindKarman(double diameter, double windSpeed)
 {
     karman = SDTWindKarman_new();
     SDTWindKarman_setDiameter(this.karman, diameter);
     SDTWindKarman_setWindSpeed(this.karman, windSpeed);
 }