MCPcopy Create free account
hub / github.com/Norbyte/ositools / Pow

Function Pow

OsiInterface/Functions/MathFunctions.cpp:77–83  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

75 }
76
77 bool Pow(OsiArgumentDesc & args)
78 {
79 auto base = args[0].Float;
80 auto exp = args[1].Float;
81 args[2].Float = pow(base, exp);
82 return true;
83 }
84
85 bool Sqrt(OsiArgumentDesc & args)
86 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected