Browse Source

pybind additions

master
Trevor Irons 2 years ago
parent
commit
3bfa3f188c
1 changed files with 3 additions and 3 deletions
  1. 3
    3
      Modules/FDEM1D/python/pyFDEM1D.cpp

+ 3
- 3
Modules/FDEM1D/python/pyFDEM1D.cpp View File

242
         // print
242
         // print
243
         .def("Serialize", &Lemma::EMEarth1D::Print, "YAML representation of the class")
243
         .def("Serialize", &Lemma::EMEarth1D::Print, "YAML representation of the class")
244
         .def("__repr__", &Lemma::EMEarth1D::Print)
244
         .def("__repr__", &Lemma::EMEarth1D::Print)
245
-	
245
+
246
         // accessors
246
         // accessors
247
         .def("GetName", &Lemma::EMEarth1D::GetName, "Returns the name of the class")
247
         .def("GetName", &Lemma::EMEarth1D::GetName, "Returns the name of the class")
248
         .def("GetFieldPoints", &Lemma::EMEarth1D::GetFieldPoints, "Returns the FieldPoint class")
248
         .def("GetFieldPoints", &Lemma::EMEarth1D::GetFieldPoints, "Returns the FieldPoint class")
273
         .def("CalculateWireAntennaFields", &Lemma::EMEarth1D::CalculateWireAntennaFields,
273
         .def("CalculateWireAntennaFields", &Lemma::EMEarth1D::CalculateWireAntennaFields,
274
             "Native Lemma calculation of a wire antenna")
274
             "Native Lemma calculation of a wire antenna")
275
 */
275
 */
276
-	
276
+
277
         ;
277
         ;
278
 
278
 
279
 
279
 
338
         .def("ClearFields", &Lemma::FieldPoints::ClearFields, "Clears calculated fields")
338
         .def("ClearFields", &Lemma::FieldPoints::ClearFields, "Clears calculated fields")
339
         .def("MaskPoint", &Lemma::FieldPoints::MaskPoint, "Masks the index resulting in no calculation")
339
         .def("MaskPoint", &Lemma::FieldPoints::MaskPoint, "Masks the index resulting in no calculation")
340
         .def("UnMaskPoint", &Lemma::FieldPoints::UnMaskPoint, "Unmasks the index resulting in a calculation")
340
         .def("UnMaskPoint", &Lemma::FieldPoints::UnMaskPoint, "Unmasks the index resulting in a calculation")
341
-	
341
+
342
         ;
342
         ;
343
 }
343
 }

Loading…
Cancel
Save