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