123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- #include "Lemma"
-
- using namespace Lemma;
-
- int main() {
-
- PolygonalWireAntenna *helm1 = PolygonalWireAntenna::New();
- helm1->SetNumberOfFrequencies(1);
- helm1->SetFrequency(0, 1000);
- helm1->SetNumberOfPoints(5);
- helm1->SetPoint(0, Vector3r( 0, 0, 0));
- helm1->SetPoint(1, Vector3r( 0, 0, 0));
- helm1->SetPoint(2, Vector3r( 0, 0, 0));
- helm1->SetPoint(3, Vector3r( 0, 0, 0));
- helm1->SetPoint(4, Vector3r( 0, 0, 0));
- helm1->SetCurrent(1.);
- helm1->Delete();
- }
|