| 180 | } |
| 181 | |
| 182 | static void* OPS_FiberSectionWarping() |
| 183 | { |
| 184 | void* theSec = 0; |
| 185 | int ndm = OPS_GetNDM(); |
| 186 | int ndf = OPS_GetNDF(); |
| 187 | if(ndm == 2) { |
| 188 | //theSec = OPS_FiberSectionWarping2d(); |
| 189 | //theActiveFiberSectionWarping2d = (FiberSectionWarping2d*)theSec; |
| 190 | } else if(ndm == 3) { |
| 191 | theSec = OPS_FiberSectionWarping3d(); |
| 192 | theActiveFiberSectionWarping3d = (FiberSectionWarping3d*)theSec; |
| 193 | } |
| 194 | |
| 195 | return theSec; |
| 196 | } |
| 197 | |
| 198 | static void* OPS_FiberSectionAsym() |
| 199 | { |
nothing calls this directly
no test coverage detected