本文整理汇总了C++中Curve::AddKey方法的典型用法代码示例。如果您正苦于以下问题:C++ Curve::AddKey方法的具体用法?C++ Curve::AddKey怎么用?C++ Curve::AddKey使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Curve
的用法示例。
在下文中一共展示了Curve::AddKey方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: PostInitialize
void YaptCurveFacade::PostInitialize(ISystem *ySys, IPluginObjectInstance *pInstance)
{
ILogger *pLogger = ySys->GetLogger("YaptCurveFacade");//Logger::GetLogger("YaptCurveFacade");
pLogger->Debug("PostInitialize");
if (pCurve != NULL)
{
pLogger->Debug("Dispose curve - not implemented, leaking memory");
}
// 'unknown' not supported (it's pointless) so just add '1' to the incoming type
pCurve = Curve::CreateCurve(kCurveClass(curveType->v->int_val+1), channels->v->int_val);
IDocNode *pNode = pInstance->GetDocumentNode();
int nChildren = pNode->GetNumChildren(kNodeType_ObjectInstance);
pLogger->Debug("Assigning keys from children (num childs = '%d')",nChildren);
int i;
pLogger->Enter();
for (i=0;i<nChildren;i++)
{
// IPluginObjectInstance *pObject = pDoc->GetChildAt(pInstance, i, kNodeType_ObjectInstance);
IDocNode *pChildNode = pNode->GetChildAt(i, kNodeType_ObjectInstance);
IPluginObjectInstance *pObject = dynamic_cast<IPluginObjectInstance *>(pChildNode->GetNodeObject());
GenericCurveKey *pCurveKey = dynamic_cast<GenericCurveKey *> (pObject->GetExtObject());
if (pCurveKey != NULL)
{
Key *pKey = pCurveKey->GetKey();
if (pKey != NULL) {
pKey->t *= tScale->v->float_val;
pCurve->AddKey(pKey);
pLogger->Debug("Added key '%d' at t=%f",i,pKey->t);
} else {
pLogger->Debug("Key is NULL!");
exit(1);
}
} else
{
pLogger->Error("Unsupported child type, Animation curves only supports 'GenericKey' derivates");
}
}
pLogger->Leave();
}