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