projects
/
blender-staging.git
/ blob
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Three-in-one commit:
[blender-staging.git]
/
source
/
blender
/
yafray
/
YafRay_Api.h
1
#ifndef __YAFRAY_API_H
2
#define __YAFRAY_API_H
3
4
/* C interface for Blender */
5
#ifdef __cplusplus
6
extern "C" {
7
#endif
8
void YAF_switchPlugin();
9
void YAF_switchFile();
10
int YAF_exportScene();
11
//void YAF_displayImage();
12
void YAF_addDupliMtx(Object* obj);
13
int YAF_objectKnownData(Object* obj);
14
#ifdef __cplusplus
15
}
16
#endif
17
18
#endif