Tabnine Logo
WallPart.<init>
Code IndexAdd Tabnine to your IDE (free)

How to use
kendzi.kendzi3d.buildings.model.WallPart
constructor

Best Java code snippets using kendzi.kendzi3d.buildings.model.WallPart.<init> (Showing top 2 results out of 315)

origin: kendzi/kendzi3d

nodes.add(nodes.get(0));
WallPart wp = new WallPart();
wp.setNodes(nodes);
origin: kendzi/kendzi3d

private static WallPart parseWallPart(ReversableWay rw, Perspective pPerspective) {
  Way way = rw.getWay();
  WallPart wp = new WallPart();
  List<WallNode> wnList = new ArrayList<WallNode>();
  if (!rw.isReversed()) {
    for (int i = 0; i < way.getNodesCount(); i++) {
      WallNode wn = parseWallNode(way.getNode(i), pPerspective);
      wnList.add(wn);
    }
  } else {
    for (int i = way.getNodesCount() - 1; i >= 0; i--) {
      WallNode wn = parseWallNode(way.getNode(i), pPerspective);
      wnList.add(wn);
    }
  }
  wp.setNodes(wnList);
  wp.setBuildingElements(parseBuildingAttributeWallElement(way));
  // String parseFacadeName =
  // BuildingAttributeParser.parseFacadeMaterialName(w);
  // wp.setFacadeTextureData(BuildingAttributeParser.parseFacadeTexture(parseFacadeName,
  // this.textureLibraryService));
  // wp.setColor(BuildingAttributeParser.parseFacadeColor(w));
  wp.setFacadeMaterialType(BuildingAttributeParser.parseFacadeMaterialName(way));
  wp.setFacadeColor(BuildingAttributeParser.parseFacadeColor(way));
  wp.setRoofMaterialType(BuildingAttributeParser.parseRoofMaterialName(way));
  wp.setRoofColor(BuildingAttributeParser.parseRoofColor(way));
  return wp;
}
kendzi.kendzi3d.buildings.modelWallPart<init>

Popular methods of WallPart

  • getNodes
  • setNodes
  • getBuildingElements
  • getFacadeColor
  • getFacadeMaterialType
  • getRoofColor
  • setBuildingElements
  • setFacadeColor
  • setFacadeMaterialType
  • setRoofColor
  • setRoofMaterialType
  • setRoofMaterialType

Popular in Java

  • Making http post requests using okhttp
  • addToBackStack (FragmentTransaction)
  • runOnUiThread (Activity)
  • getContentResolver (Context)
  • Selector (java.nio.channels)
    A controller for the selection of SelectableChannel objects. Selectable channels can be registered w
  • Deque (java.util)
    A linear collection that supports element insertion and removal at both ends. The name deque is shor
  • Dictionary (java.util)
    Note: Do not use this class since it is obsolete. Please use the Map interface for new implementatio
  • ExecutorService (java.util.concurrent)
    An Executor that provides methods to manage termination and methods that can produce a Future for tr
  • Stream (java.util.stream)
    A sequence of elements supporting sequential and parallel aggregate operations. The following exampl
  • Servlet (javax.servlet)
    Defines methods that all servlets must implement. A servlet is a small Java program that runs within
  • Top 17 Plugins for Android Studio
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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