diff options
author | rodri <rgl@antares-labs.eu> | 2024-08-13 19:31:37 +0000 |
---|---|---|
committer | rodri <rgl@antares-labs.eu> | 2024-08-13 19:31:37 +0000 |
commit | f8954cf69e723da397c9ddd3cedf6a2a039668eb (patch) | |
tree | 269bd87bd75bbeea7ceff6cfad4244f2801aff90 /readme | |
parent | 02597db21d25fedde53513967cd979d38acbceec (diff) | |
download | 3dee-f8954cf69e723da397c9ddd3cedf6a2a039668eb.tar.gz 3dee-f8954cf69e723da397c9ddd3cedf6a2a039668eb.tar.bz2 3dee-f8954cf69e723da397c9ddd3cedf6a2a039668eb.zip |
vis: add options for the clr color, blending and z-buf and a-buf.
also stop setting alpha always to 1. it's not correct yet
but it allows for transparent objects to be blended properly.
Diffstat (limited to 'readme')
-rw-r--r-- | readme | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -29,6 +29,13 @@ USAGE The models supported by the program are OBJ files with material data (MTL files). You can find examples in the mdl/ folder. + NOTE: Now two visibility determination technologies are available: the + Z-buffer and the A-buffer. To get the best results out of them the + following configurations are recommended: + + - z-buffer: blend OFF | z-buf (depth testing) ON | a-buf OFF + - a-buffer: blend ON | z-buf (depth testing) OFF | a-buf ON + - move camera with ↑↓ ((for|back)ward), ←→ (horizontally), PgUp and PgDn (vertically). - rotate camera with AD (yaw), WS (pitch), QE (roll). - change cameras with F[1-4]. cameras 1 and 3 are orthographic, 2 and 4 perspective. |