JavaFX 3D Tutorial #6 – Textures with Diffuse Map

In this chapter, we will talk about applying textures with diffuse map. In 3D programming, texture is one of the most important parts because it provides that actual look and feel of an object by adding details on its surface.

JavaFX and PhongMaterial

In the javafx.scene.paint package, you can see a class that extends Material abstract class, the PhongMaterial. PhongMaterial allows to create virtual materials that can be applied over your 3D object to create real-world like objects.

Before diving directly in to the code, let’s have a look at what exactly is the Diffuse Map.

What is a Diffuse Map ?

According to the definition, Diffuse mapping (also know as texture mapping) refers to a computer graphics method that simply wrapped and mapped pixels from a texture to a 3D surface. It defines the color property of the surface. For example, if you want to color your object to red, you simply apply red diffuse map over it, it will become red.

If you would like to read more about it, have a look at cryengine doc.

Apply Color Over The Surface

JavaFX PhongMaterial provides two option to apply a diffuse map. Either using a color or using an image. If you use a color, then the whole object will be painted with that color.

Let’s see how setting a color works.

//Create Material
PhongMaterial material = new PhongMaterial();
//Applying JavaFX Diffuse Map with Color Royal Blue[/caption] Royal blue color
material.setDiffuseColor(Color.ROYALBLUE));
Box box = new Box(100, 20, 50);
//Apply material for the box
box.setMaterial(material);

 

JavaFX: Royal blue color applied as Diffuse Map

So, using the PhongMaterial’s setDiffuseColor(Color.ROYALBLUE), we set the color of the surface. You can set any color you want.

Apply Texture Over The Surface

Colors are suitable in some cases. But, in most cases, we need something more complex than some simple colors. JavaFX provides option to set diffuse map using an Image. You can simply apply any image as texture for your object.

Let’s see how a wooden texture works on our box.

//Create Material
PhongMaterial material = new PhongMaterial();
//Applying wooden texture
material.setDiffuseMap(new Image(getClass().getResourceAsStream("wood.jpg")));
Box box = new Box(100, 20, 50);
//Apply material for the box
box.setMaterial(material);

And it looks as follows. Pretty awesome, right?

JavaFX Diffuse Map with Woode Image

and that’s it. It is just 3 lines of code to apply a complex texture on your object. If you look at the set* methods of PhongMaterial, you will find a lot more methods. The thing is, diffuse map is just a start. You can make your objects with great amount of detail with these options. We will discover those methods in the upcoming chapters.

Visit JavaFX 3D Course Index Page

Comments

50 responses to “JavaFX 3D Tutorial #6 – Textures with Diffuse Map”

  1. … [Trackback]

    […] Find More on that Topic: genuinecoder.com/javafx-3d-tutorial-6-textures-with-diffuse-map/ […]

  2. … [Trackback]

    […] Here you can find 53799 more Info on that Topic: genuinecoder.com/javafx-3d-tutorial-6-textures-with-diffuse-map/ […]

  3. … [Trackback]

    […] Read More here on that Topic: genuinecoder.com/javafx-3d-tutorial-6-textures-with-diffuse-map/ […]

  4. … [Trackback]

    […] Read More to that Topic: genuinecoder.com/javafx-3d-tutorial-6-textures-with-diffuse-map/ […]

  5. … [Trackback]

    […] Info to that Topic: genuinecoder.com/javafx-3d-tutorial-6-textures-with-diffuse-map/ […]

  6. … [Trackback]

    […] Information on that Topic: genuinecoder.com/javafx-3d-tutorial-6-textures-with-diffuse-map/ […]

  7. … [Trackback]

    […] Read More to that Topic: genuinecoder.com/javafx-3d-tutorial-6-textures-with-diffuse-map/ […]

  8. … [Trackback]

    […] Info on that Topic: genuinecoder.com/javafx-3d-tutorial-6-textures-with-diffuse-map/ […]

  9. … [Trackback]

    […] Read More to that Topic: genuinecoder.com/javafx-3d-tutorial-6-textures-with-diffuse-map/ […]

  10. … [Trackback]

    […] Read More on to that Topic: genuinecoder.com/javafx-3d-tutorial-6-textures-with-diffuse-map/ […]

  11. … [Trackback]

    […] Find More to that Topic: genuinecoder.com/javafx-3d-tutorial-6-textures-with-diffuse-map/ […]

  12. … [Trackback]

    […] Read More Info here on that Topic: genuinecoder.com/javafx-3d-tutorial-6-textures-with-diffuse-map/ […]

  13. … [Trackback]

    […] There you can find 32694 additional Information to that Topic: genuinecoder.com/javafx-3d-tutorial-6-textures-with-diffuse-map/ […]

  14. … [Trackback]

    […] Read More here to that Topic: genuinecoder.com/javafx-3d-tutorial-6-textures-with-diffuse-map/ […]

  15. … [Trackback]

    […] Read More Info here on that Topic: genuinecoder.com/javafx-3d-tutorial-6-textures-with-diffuse-map/ […]

  16. … [Trackback]

    […] Read More on on that Topic: genuinecoder.com/javafx-3d-tutorial-6-textures-with-diffuse-map/ […]

  17. … [Trackback]

    […] Find More here to that Topic: genuinecoder.com/javafx-3d-tutorial-6-textures-with-diffuse-map/ […]

  18. … [Trackback]

    […] Read More to that Topic: genuinecoder.com/javafx-3d-tutorial-6-textures-with-diffuse-map/ […]

  19. … [Trackback]

    […] Read More to that Topic: genuinecoder.com/javafx-3d-tutorial-6-textures-with-diffuse-map/ […]

  20. … [Trackback]

    […] Read More on that Topic: genuinecoder.com/javafx-3d-tutorial-6-textures-with-diffuse-map/ […]

  21. … [Trackback]

    […] There you can find 37449 more Information to that Topic: genuinecoder.com/javafx-3d-tutorial-6-textures-with-diffuse-map/ […]

  22. … [Trackback]

    […] Info on that Topic: genuinecoder.com/javafx-3d-tutorial-6-textures-with-diffuse-map/ […]

  23. … [Trackback]

    […] Read More on on that Topic: genuinecoder.com/javafx-3d-tutorial-6-textures-with-diffuse-map/ […]

  24. … [Trackback]

    […] Read More on that Topic: genuinecoder.com/javafx-3d-tutorial-6-textures-with-diffuse-map/ […]

  25. … [Trackback]

    […] Info on that Topic: genuinecoder.com/javafx-3d-tutorial-6-textures-with-diffuse-map/ […]

  26. … [Trackback]

    […] Find More Info here to that Topic: genuinecoder.com/javafx-3d-tutorial-6-textures-with-diffuse-map/ […]

  27. … [Trackback]

    […] Read More on that Topic: genuinecoder.com/javafx-3d-tutorial-6-textures-with-diffuse-map/ […]

  28. … [Trackback]

    […] Read More on on that Topic: genuinecoder.com/javafx-3d-tutorial-6-textures-with-diffuse-map/ […]

  29. … [Trackback]

    […] Information on that Topic: genuinecoder.com/javafx-3d-tutorial-6-textures-with-diffuse-map/ […]

  30. … [Trackback]

    […] Read More here on that Topic: genuinecoder.com/javafx-3d-tutorial-6-textures-with-diffuse-map/ […]

  31. … [Trackback]

    […] Read More to that Topic: genuinecoder.com/javafx-3d-tutorial-6-textures-with-diffuse-map/ […]

  32. … [Trackback]

    […] Find More on on that Topic: genuinecoder.com/javafx-3d-tutorial-6-textures-with-diffuse-map/ […]

  33. … [Trackback]

    […] Read More here to that Topic: genuinecoder.com/javafx-3d-tutorial-6-textures-with-diffuse-map/ […]

  34. … [Trackback]

    […] Info on that Topic: genuinecoder.com/javafx-3d-tutorial-6-textures-with-diffuse-map/ […]

  35. … [Trackback]

    […] Find More on that Topic: genuinecoder.com/javafx-3d-tutorial-6-textures-with-diffuse-map/ […]

  36. … [Trackback]

    […] Here you will find 11552 additional Information to that Topic: genuinecoder.com/javafx-3d-tutorial-6-textures-with-diffuse-map/ […]

  37. … [Trackback]

    […] Read More Info here to that Topic: genuinecoder.com/javafx-3d-tutorial-6-textures-with-diffuse-map/ […]

  38. generique kamagra bon marche

    achat kamagra livraison le lendemain

  39. ordering enclomiphene uk meds

    buying enclomiphene overnight delivery

  40. get androxal cheap europe

    cheapest buy androxal generic in us

  41. online order dutasteride canadian pharmacy no prescription

    purchase dutasteride generic online usa

  42. order flexeril cyclobenzaprine cheap generic uk

    ordering flexeril cyclobenzaprine purchase online from india

  43. buying gabapentin generic alternative

    buying gabapentin uk in store

  44. how to buy fildena uk online

    ordering fildena canada generic

  45. buy staxyn cheap trusted

    online order staxyn generic online usa

  46. low price itraconazole without prescription

    buy itraconazole without a prescription overnight delivery

  47. avodart lowest cost pharmacy

    cheapest buy avodart australia online generic

  48. xifaxan no rx saturday delivery

    cheap xifaxan generic south africa

  49. cheapest buy rifaximin generic alternatives

    discount rifaximin cheap discount

Leave a Reply