get_Parameters Method

WRAPPER_API ParameterCollection &get_Parameters()

WRAPPER_API const ParameterCollection &get_Parameters() const

 

Description

The Parameters property provides access to a ParameterCollection that stores values used to customize this MathTransform.  For a description of the parameters needed by each type of MathTransform, click on the description for the appropriate element in the ClassType enumeration.

 

Example

void MathTransform_getParameters(GEOCALCPBW_NAMESPACE::MathTransform & mt)

{

if(mt.get_Class() == GEOCALCPBW_NAMESPACE::MathTransform::ClassType::Affine)

{

mt.get_Parameters().set_FloatItem(L"dx", 0);

mt.get_Parameters().set_FloatItem(L"dxx", 1.5);

mt.get_Parameters().set_FloatItem(L"dxy", 1);

mt.get_Parameters().set_FloatItem(L"dy", 0);

mt.get_Parameters().set_FloatItem(L"dyy", 0.34);

mt.get_Parameters().set_FloatItem(L"dyx", 1);

}

}