Added screenshots to readme

This commit is contained in:
Michaël Lemaire 2014-02-23 11:47:46 +01:00
parent e71ec75ccb
commit 75b16108a6
15 changed files with 2 additions and 202 deletions

View file

@ -1,64 +0,0 @@
????-??-?? Technology Preview 2
-------------------------------
Global :
* Version handling in saved files.
* Replaced old noise algorithm with Simplex Noise (up to 4 times faster).
* New noise settings for better shape control.
Terrain :
* Added canvases to paint the shape directly.
* Shadows have been improved and are now configurable.
Textures :
* New texture model (perpendicular displacement and thickness).
* Textures ranges are now using curves.
Water :
* Revamped light-based coloring.
* Added foam.
Atmosphere :
* Merged with sky module.
* New sky model and aerial perspective (based on Preetham's work).
* Better previews.
Clouds :
* Added clouds hardness to light.
* New cloud model with 2 noises : one for the global shape and one for edges.
* Added clouds types with automatic settings.
Rendering :
* Added full scene antialiasing (FSAA).
* High Dynamic Range lighting.
GUI :
* Improved curve rendering.
* New material editor.
* Added render timer.
* Previews locations and render params are now saved.
* Added grid and axis labels to curve editor.
* Added layer sorting and naming.
* Automatic settings can be loaded from presets.
Previews :
* Scaling is now logarithmic (slower when zoomed).
* Drawing now takes advantage of multiple CPU cores.
* Added camera location.
* Added toggles and choices to configure some previews.
3D Explorer:
* Added ground texture and skybox.
* Progressive rendering now takes advantage of multiple CPU cores.
2012-04-20 Technology Preview 1
-------------------------------
First preview version :
* Ground with simple texture layers
* Water with waves, transparency and reflection
* Sky with sun
* Atmosphere with fog
* Cloud 3d layers
* Two-pass rendering
* Form-based GUI, with real-time previews

View file

@ -10,6 +10,8 @@ About
It is written in C++ 11, using Qt 5.2 as only dependency.
[![Screenshot 1](data/screenshots/small1.jpg)](data/screenshots/large1.jpg) [![Screenshot 2](data/screenshots/small2.jpg)](data/screenshots/large2.jpg) [![Screenshot 3](data/screenshots/small3.jpg)](data/screenshots/large3.jpg)
Build/Run
---------

BIN
data/screenshots/large1.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 141 KiB

BIN
data/screenshots/large2.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 471 KiB

BIN
data/screenshots/large3.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 328 KiB

BIN
data/screenshots/small1.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

BIN
data/screenshots/small2.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

BIN
data/screenshots/small3.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

6
debian/README vendored
View file

@ -1,6 +0,0 @@
The Debian Package paysages3d
----------------------------
Comments regarding the Package
-- Michael Lemaire <paysages@thunderk.net> Sun, 16 Jun 2013 09:36:17 +0200

5
debian/changelog vendored
View file

@ -1,5 +0,0 @@
paysages3d (0.2-1) stable; urgency=low
* Beta 2 release.
-- <paysages@thunderk.net> Sun, 16 Jun 2013 09:42:45 +0000

1
debian/compat vendored
View file

@ -1 +0,0 @@
5

12
debian/control vendored
View file

@ -1,12 +0,0 @@
Source: paysages3d
Section: graphics
Priority: extra
Maintainer: Michael Lemaire <paysages@thunderk.net>
Build-Depends: debhelper (>= 5)
Standards-Version: 3.7.3
Package: paysages3d
Architecture: all
Depends: ${shlibs:Depends}, ${misc:Depends}, libglib2.0-0, libdevil1c2, libqtcore4, libqtgui4, libqt4-opengl
Description: Paysages 3D is a landscape synthesizer and renderer
Paysages 3D is a work-in-progress 3D software, allowing to model, preview, and render vast natural sceneries, with ground, sky, clouds...

29
debian/copyright vendored
View file

@ -1,29 +0,0 @@
This package was debianized by Michael Lemaire <paysages@thunderk.net> on
Sun, 16 Jun 2013 09:36:17 +0200.
Copyright:
Copyright (C) 2013 Michael Lemaire
License:
This package is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This package is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this package; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
On Debian systems, the complete text of the GNU General
Public License can be found in `/usr/share/common-licenses/GPL'.
The Debian packaging is (C) 2013, Michael Lemaire <paysages@thunderk.net> and
is licensed under the GPL, see above.

1
debian/dirs vendored
View file

@ -1 +0,0 @@
usr/share/paysages3d

84
debian/rules vendored
View file

@ -1,84 +0,0 @@
#!/usr/bin/make -f
# -*- makefile -*-
# Sample debian/rules that uses debhelper.
# This file was originally written by Joey Hess and Craig Small.
# As a special exception, when this file is copied by dh-make into a
# dh-make output file, you may use that output file without restriction.
# This special exception was added by Craig Small in version 0.37 of dh-make.
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
CFLAGS = -Wall -g
ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
CFLAGS += -O0
else
CFLAGS += -O2
endif
configure: configure-stamp
configure-stamp:
dh_testdir
touch configure-stamp
build: build-stamp
build-stamp: configure-stamp
dh_testdir
$(MAKE)
touch $@
clean:
dh_testdir
dh_testroot
rm -f build-stamp configure-stamp
-$(MAKE) "DESTDIR=$(CURDIR)/debian/paysages3d" clean
dh_clean
install: build
dh_testdir
dh_testroot
dh_clean -k
dh_installdirs
$(MAKE) "DESTDIR=$(CURDIR)/debian/paysages3d" install
binary-indep: build install
binary-arch: build install
dh_testdir
dh_testroot
dh_installchangelogs
# dh_installdocs
# dh_installexamples
dh_install
# dh_installmenu
# dh_installdebconf
# dh_installlogrotate
# dh_installemacsen
# dh_installpam
# dh_installmime
# dh_pysupport
# dh_installinit
# dh_installcron
# dh_installinfo
# dh_installman debian/*.1
dh_link
dh_strip
dh_compress
dh_fixperms
# dh_perl
# dh_makeshlibs
dh_installdeb
dh_shlibdeps
dh_gencontrol
dh_md5sums
dh_builddeb
binary: binary-indep binary-arch
.PHONY: build clean binary-indep binary-arch binary install configure