KP_PointCache for Maya 2008, 2009, 2010 MacOS
I have compiled the KP_PointCache plugin by Kai Wolter for MacOSX and Maya 2008, 2009 and 2010.
I have attached the XProject files and compiled plugins.
I had to change two line of codes to get it to compile.
KP_PointCache.cpp line:434
from: long beforeFrameInBuffer = max(0, firstFrameInBuffer – 1);
to: long beforeFrameInBuffer = max<long>(0, firstFrameInBuffer – 1);
KP_PointCache.cpp line:435
from: long afterFrameInBuffer = min(numSamples -1, nextFrameInBuffer + 1);
to: long afterFrameInBuffer = min<long>(numSamples -1, nextFrameInBuffer + 1);