MCPcopy Create free account
hub / github.com/GilesBathgate/RapCAD / getValueString

Method getValueString

src/complexvalue.cpp:31–42  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

29}
30
31QString ComplexValue::getValueString() const
32{
33 QString result;
34 result.append("<");
35 result.append(real.getValueString());
36 for(Value* v: imaginary) {
37 result.append(",");
38 result.append(v->getValueString());
39 }
40 result.append(">");
41 return result;
42}
43
44void ComplexValue::toQuaternion(decimal& w,decimal& x,decimal& y,decimal& z)
45{

Callers

nothing calls this directly

Calls 1

appendMethod · 0.80

Tested by

no test coverage detected