Tabnine Logo
BuildingModel.getFloorMaterialType
Code IndexAdd Tabnine to your IDE (free)

How to use
getFloorMaterialType
method
in
kendzi.kendzi3d.buildings.model.BuildingModel

Best Java code snippets using kendzi.kendzi3d.buildings.model.BuildingModel.getFloorMaterialType (Showing top 1 results out of 315)

origin: kendzi/kendzi3d

public static TextureData takeFloorTextureData(BuildingModel buildingModel, BuildingPart bp,
    BuildingElementsTextureManager tm, boolean colorable) {
  String mt = null;
  if (bp.getFloorMaterialType() != null) {
    mt = bp.getFloorMaterialType();
  } else if (buildingModel.getFloorMaterialType() != null) {
    mt = buildingModel.getFloorMaterialType();
  }
  TextureData td = tm.findTexture(new TextureFindCriteria(Type.FLOOR, mt, null, null, null, colorable));
  if (td == null) {
    td = new TextureData(null, 1, 1);
  }
  return td;
}
kendzi.kendzi3d.buildings.modelBuildingModelgetFloorMaterialType

Popular methods of BuildingModel

  • <init>
  • getParts
  • setParts
  • getFacadeColor
  • getFacadeMaterialType
  • getFloorColor
  • getNodeParts
  • getRoofColor
  • getRoofMaterialType
  • setNodeParts

Popular in Java

  • Making http requests using okhttp
  • notifyDataSetChanged (ArrayAdapter)
  • findViewById (Activity)
  • onCreateOptionsMenu (Activity)
  • GridBagLayout (java.awt)
    The GridBagLayout class is a flexible layout manager that aligns components vertically and horizonta
  • FileWriter (java.io)
    A specialized Writer that writes to a file in the file system. All write requests made by calling me
  • IOException (java.io)
    Signals a general, I/O-related error. Error details may be specified when calling the constructor, a
  • HashMap (java.util)
    HashMap is an implementation of Map. All optional operations are supported.All elements are permitte
  • TimeZone (java.util)
    TimeZone represents a time zone offset, and also figures out daylight savings. Typically, you get a
  • ReentrantLock (java.util.concurrent.locks)
    A reentrant mutual exclusion Lock with the same basic behavior and semantics as the implicit monitor
  • Top PhpStorm plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now