Naming conventions
 
 
 

Header files and sample programs generally follow the following naming conventions:

PrefixNotes
KFbxMost FBX SDK class names begin with this.Examples:KFbxNode,KFbxScene,KFbxCamera
KMany utility classes begin with upper case “K”.Examples:KString,KFCurve,KTime
pParameters passed to a member function begin with lower case “P”.Examples:pWriteFileFormat,pScene,pFilename
lLocal variables begin with lower-case “L”.Examples:lWriteFileFormat,lScene,lFilename
gGlobal variables begin with lower-case “G”.Examples:gStart,gStop,gCurrentTime
mMember data (properties) begin with lower-case “M”.Examples:mDescription,mImportname,mSelect