Searched refs:blenderContext (Results 51 - 73 of 73) sorted by relevance

123

/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/constraints/
H A DConstraintDistLimit.java34 * @param blenderContext
41 Ipo influenceIpo, BlenderContext blenderContext) throws BlenderFileException {
42 super(constraintStructure, ownerOMA, influenceIpo, blenderContext);
51 AnimData animData = blenderContext.getAnimData(this.owner.getOma());
40 ConstraintDistLimit(Structure constraintStructure, Long ownerOMA, Ipo influenceIpo, BlenderContext blenderContext) argument
H A DConstraintRotLike.java37 * @param blenderContext
44 Ipo influenceIpo, BlenderContext blenderContext) throws BlenderFileException {
45 super(constraintStructure, ownerOMA, influenceIpo, blenderContext);
53 AnimData animData = blenderContext.getAnimData(this.owner.getOma());
43 ConstraintRotLike(Structure constraintStructure, Long ownerOMA, Ipo influenceIpo, BlenderContext blenderContext) argument
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/cameras/
H A DCameraHelper.java115 public boolean shouldBeLoaded(Structure structure, BlenderContext blenderContext) { argument
116 return (blenderContext.getBlenderKey().getFeaturesToLoad() & FeaturesToLoad.CAMERAS) != 0;
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/
H A DTextureGeneratorNoise.java61 protected Texture generate(Structure tex, int width, int height, int depth, BlenderContext blenderContext) { argument
66 float[][] colorBand = this.computeColorband(tex, blenderContext);
H A DTextureGeneratorClouds.java68 protected Texture generate(Structure tex, int width, int height, int depth, BlenderContext blenderContext) { argument
81 float[][] colorBand = this.computeColorband(tex, blenderContext);
H A DTextureGeneratorDistnoise.java62 protected Texture generate(Structure tex, int width, int height, int depth, BlenderContext blenderContext) { argument
72 float[][] colorBand = this.computeColorband(tex, blenderContext);
H A DTextureGeneratorMarble.java64 protected Texture generate(Structure tex, int width, int height, int depth, BlenderContext blenderContext) { argument
69 float[][] colorBand = this.computeColorband(tex, blenderContext);
H A DTextureGeneratorMusgrave.java61 protected Texture generate(Structure tex, int width, int height, int depth, BlenderContext blenderContext) { argument
68 float[][] colorBand = this.computeColorband(tex, blenderContext);
H A DTextureGeneratorStucci.java61 protected Texture generate(Structure tex, int width, int height, int depth, BlenderContext blenderContext) { argument
77 float[][] colorBand = this.computeColorband(tex, blenderContext);
H A DTextureGeneratorBlend.java117 protected Texture generate(Structure tex, int width, int height, int depth, BlenderContext blenderContext) { argument
123 float[][] colorBand = this.computeColorband(tex, blenderContext);
H A DTextureGeneratorMagic.java124 protected Texture generate(Structure tex, int width, int height, int depth, BlenderContext blenderContext) { argument
132 float[][] colorBand = this.computeColorband(tex, blenderContext);
H A DTextureGeneratorVoronoi.java62 protected Texture generate(Structure tex, int width, int height, int depth, BlenderContext blenderContext) { argument
78 float[][] colorBand = this.computeColorband(tex, blenderContext);
H A DTextureGeneratorWood.java73 protected Texture generate(Structure tex, int width, int height, int depth, BlenderContext blenderContext) { argument
81 float[][] colorBand = this.computeColorband(tex, blenderContext);
H A DTextureGenerator.java69 * @param blenderContext
73 protected abstract Texture generate(Structure tex, int width, int height, int depth, BlenderContext blenderContext); argument
80 * @param blenderContext
84 private ColorBand readColorband(Structure tex, BlenderContext blenderContext) { argument
91 colorbandStructure = pColorband.fetchData(blenderContext.getInputStream()).get(0);
100 protected float[][] computeColorband(Structure tex, BlenderContext blenderContext) { argument
101 ColorBand colorBand = this.readColorband(tex, blenderContext);
H A DNoiseGenerator.java846 public boolean shouldBeLoaded(Structure structure, BlenderContext blenderContext) { argument
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/particles/
H A DParticlesHelper.java97 public ParticleEmitter toParticleEmitter(Structure particleSystem, BlenderContext blenderContext) throws BlenderFileException { argument
101 Structure particleSettings = pParticleSettings.fetchData(blenderContext.getInputStream()).get(0);
163 int fps = blenderContext.getBlenderKey().getFps();
193 public boolean shouldBeLoaded(Structure structure, BlenderContext blenderContext) { argument
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/blending/
H A DAbstractTextureBlender.java27 * @param blenderContext
30 protected void blendPixel(float[] result, float[] materialColor, float[] pixelColor, float blendFactor, int blendtype, BlenderContext blenderContext) { argument
116 this.blendHSV(blendtype, result, blendFactor, pixelColor, blenderContext);
134 * @param blenderContext
137 protected void blendHSV(int type, float[] materialRGB, float fac, float[] pixelColor, BlenderContext blenderContext) { argument
139 MaterialHelper materialHelper = blenderContext.getHelper(MaterialHelper.class);
H A DTextureBlenderFactory.java73 public Texture blend(float[] materialColor, Texture texture, float[] color, float affectFactor, int blendType, boolean neg, BlenderContext blenderContext) {
H A DTextureBlenderDDS.java32 public Texture blend(float[] materialColor, Texture texture, float[] color, float affectFactor, int blendType, boolean neg, BlenderContext blenderContext) { argument
76 this.blendPixel(resultPixel, materialColor, pixelColor, affectFactor, blendType, blenderContext);
H A DTextureBlenderLuminance.java33 public Texture blend(float[] materialColor, Texture texture, float[] color, float affectFactor, int blendType, boolean neg, BlenderContext blenderContext) { argument
51 this.blendPixel(resultPixel, materialColor, color, tinAndAlpha[0], affectFactor, blendType, blenderContext);
119 * @param blenderContext
122 protected void blendPixel(float[] result, float[] materialColor, float[] color, float textureIntensity, float textureFactor, int blendtype, BlenderContext blenderContext) { argument
215 this.blendHSV(blendtype, result, textureIntensity, color, blenderContext);
H A DTextureBlenderAWT.java42 public Texture blend(float[] materialColor, Texture texture, float[] color, float affectFactor, int blendType, boolean neg, BlenderContext blenderContext) { argument
60 this.blendPixel(resultPixel, materialColor, pixelColor, affectFactor, blendType, blenderContext);
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/materials/
H A DMaterialContext.java62 /* package */MaterialContext(Structure structure, BlenderContext blenderContext) throws BlenderFileException { argument
109 Structure mtex = p.fetchData(blenderContext.getInputStream()).get(0);
122 Structure tex = pTex.fetchData(blenderContext.getInputStream()).get(0);
146 TextureHelper textureHelper = blenderContext.getHelper(TextureHelper.class);
153 Texture texture = textureHelper.getTexture(mtexAndTex[1], blenderContext);
160 texture = textureBlender.blend(diffuseColorArray, texture, color, colfac, blendType, negateTexture, blenderContext);
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/file/
H A DDnaBlockData.java59 * @param blenderContext
64 public DnaBlockData(BlenderInputStream inputStream, BlenderContext blenderContext) throws BlenderFileException { argument
132 structures[i] = new Structure(inputStream, names, types, blenderContext);

Completed in 885 milliseconds

123