MCPcopy Create free account
hub / github.com/PDAL/PDAL / FloatNode

Method FloatNode

plugins/e57/libE57Format/src/FloatNode.cpp:152–157  ·  view source on GitHub ↗

! @brief Create an E57 element for storing an double precision IEEE floating point number. @param [in] destImageFile The ImageFile where the new node will eventually be stored. @param [in] value The double precision IEEE floating point value of the element. @param [in] precision The precision of IEEE floating point to use. May be ::PrecisionSingle or ::PrecisionDouble. @param [in] minimum The sma

Source from the content-addressed store, hash-verified

150@see FloatPrecision, FloatNode::value, Node, CompressedVectorNode, CompressedVectorNode::prototype
151*/
152FloatNode::FloatNode( const ImageFile &destImageFile, double value, FloatPrecision precision,
153 double minimum, double maximum ) :
154 impl_( new FloatNodeImpl( destImageFile.impl(), value, precision, minimum, maximum ) )
155{
156 impl_->validateValue();
157}
158
159/*!
160@brief Is this a root node.

Callers

nothing calls this directly

Calls 3

toStringFunction · 0.70
validateValueMethod · 0.45
typeMethod · 0.45

Tested by

no test coverage detected