예제 #1
0
파일: ofxhClip.cpp 프로젝트: mick50/openfx
 OfxRectI ImageBase::getBounds() const
 {
   OfxRectI bounds;
   getIntPropertyN(kOfxImagePropBounds, &bounds.x1, 4);
   return bounds;
 }
예제 #2
0
파일: ofxhClip.cpp 프로젝트: mick50/openfx
 OfxRectI ImageBase::getROD() const
 {
   OfxRectI rod;
   getIntPropertyN(kOfxImagePropRegionOfDefinition, &rod.x1, 4);
   return rod;
 }
예제 #3
0
파일: ofxhClip.cpp 프로젝트: Anna83/openfx
 OfxRectI Image::getROD() const
 {
   OfxRectI rod;
   getIntPropertyN(kOfxImagePropBounds, &rod.x1, 4);
   return rod;
 }