Example #1
0
JNIEXPORT void JNICALL Java_org_openscenegraph_osg_core_Vec3_nativeSetY(JNIEnv *, jclass, jlong cptr,
		jfloat value)
{
	RefVec3 *v = reinterpret_cast<RefVec3 *>(cptr);
	if(v != 0)
	{
		v->y() = value;
	}
}
Example #2
0
JNIEXPORT float JNICALL Java_org_openscenegraph_osg_core_Vec3_nativeY(JNIEnv *, jclass, jlong cptr)
{
	RefVec3 *v = reinterpret_cast<RefVec3 *>(cptr);
	if(v != 0)
	{
		return v->y();
	}
	return 0.0f;
}