Java Code Examples for com.jme3.util.IntMap#containsKey()
The following examples show how to use
com.jme3.util.IntMap#containsKey() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: GLTracer.java From jmonkeyengine with BSD 3-Clause "New" or "Revised" License | 5 votes |
private void printIntOrEnum(String method, int value, int argIndex) { IntMap<Void> argSlotMap = nonEnumArgMap.get(method); if (argSlotMap != null && argSlotMap.containsKey(argIndex)) { printInt(value); } else { printEnum(value); } }
Example 2
Source File: FbxMesh.java From jmonkeyengine with BSD 3-Clause "New" or "Revised" License | 4 votes |
@Override protected IntMap<Mesh> toJmeObject() { // Load clusters from SkinDeformer if (skinDeformer != null) { for (FbxCluster cluster : skinDeformer.getJmeObject()) { applyCluster(cluster); } } IrMesh irMesh = toIRMesh(); // Trim bone weights to 4 weights per vertex. IrUtils.trimBoneWeights(irMesh); // Convert tangents / binormals to tangents with parity. IrUtils.toTangentsWithParity(irMesh); // Triangulate quads. IrUtils.triangulate(irMesh); // Split meshes by material indices. IntMap<IrMesh> irMeshes = IrUtils.splitByMaterial(irMesh); // Create a jME3 Mesh for each material index. IntMap<Mesh> jmeMeshes = new IntMap<Mesh>(); for (IntMap.Entry<IrMesh> irMeshEntry : irMeshes) { Mesh jmeMesh = IrUtils.convertIrMeshToJmeMesh(irMeshEntry.getValue()); jmeMeshes.put(irMeshEntry.getKey(), jmeMesh); } if (jmeMeshes.size() == 0) { // When will this actually happen? Not sure. logger.log(Level.WARNING, "Empty FBX mesh found (unusual)."); } // IMPORTANT: If we have a -1 entry, those are triangles // with no material indices. // It makes sense only if the mesh uses a single material! if (jmeMeshes.containsKey(-1) && jmeMeshes.size() > 1) { logger.log(Level.WARNING, "Mesh has polygons with no material " + "indices (unusual) - they will use material index 0."); } return jmeMeshes; }