File indexing completed on 2026-04-09 07:49:37
0001 #pragma once
0002
0003 #include "geomdefs.hh"
0004
0005 struct sgeomdefs
0006 {
0007 static constexpr const char* kOutside_ = "kOutside" ;
0008 static constexpr const char* kSurface_ = "kSurface" ;
0009 static constexpr const char* kInside_ = "kInside" ;
0010 static const char* EInside_( EInside in );
0011 };
0012
0013 inline const char* sgeomdefs::EInside_( EInside in )
0014 {
0015 const char* s = nullptr ;
0016 switch(in)
0017 {
0018 case kOutside: s = kOutside_ ; break ;
0019 case kSurface: s = kSurface_ ; break ;
0020 case kInside: s = kInside_ ; break ;
0021 }
0022 return s ;
0023 }
0024