📄 org_ogre4j_meshmanager.cpp
字号:
/* Ogre4J
Copyright (C) 2002 macross
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "org_ogre4j_MeshManager.h"
#include "Ogre4JRoot.h"
//==~==~==~==~==~==~==~==~==~==~==~==~==~==~==~==~==~==~==~==~==~==~==~==~==~==
JNIEXPORT jobject JNICALL Java_org_ogre4j_MeshManager_createPlane__Ljava_lang_String_2Lorg_ogre4j_Plane_2FF
(JNIEnv *env, jobject obj, jstring name, jobject plane, jfloat width, jfloat heigth)
{
const char* _name = env->GetStringUTFChars(name, 0);
Plane p;
p.normal = Vector3::UNIT_Y;
p.d = 0;
Mesh* m = MeshManager::getSingleton().createPlane(
_name,
p,
width, heigth,
1, 1,
true, 1,
1.0f, 1.0f,
Vector3::UNIT_Z
);
env->ReleaseStringUTFChars(name, _name);
return OGRE4J.newJRef(OGRE4J.meshClass, m);
}
//==~==~==~==~==~==~==~==~==~==~==~==~==~==~==~==~==~==~==~==~==~==~==~==~==~==
JNIEXPORT jobject JNICALL Java_org_ogre4j_MeshManager_createPlane__Ljava_lang_String_2Lorg_ogre4j_Plane_2FFIIZIFFLorg_ogre4j_math_Vector3_2IIZZ
( JNIEnv *env, jobject obj, jstring name, jobject pln, jfloat width, jfloat heigth,
jint xsegments, jint ysegments, jboolean normals, jint numTexCoordSets,
jfloat uTile, jfloat vTile, jobject upVector,
jint vertexBufferUsage, jint indexBufferUsage,
jboolean vertexShadowBuffer, jboolean indexShadowBuffer)
{
const char* _name = env->GetStringUTFChars(name, 0);
Plane p = OGRE4J.newPlane(pln);
Vector3 v = OGRE4J.newVector3(upVector);
Mesh* m = MeshManager::getSingleton().createPlane(
_name,
p,
width,
heigth,
xsegments,
ysegments,
normals?true:false, numTexCoordSets,
uTile, vTile,
v,
(Ogre::HardwareBuffer::Usage)vertexBufferUsage,
(Ogre::HardwareBuffer::Usage)indexBufferUsage,
vertexShadowBuffer?true:false,
indexShadowBuffer?true:false
);
env->ReleaseStringUTFChars(name, _name);
return OGRE4J.newJRef(OGRE4J.meshClass, m);
}
//==~==~==~==~==~==~==~==~==~==~==~==~==~==~==~==~==~==~==~==~==~==~==~==~==~==
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -