Fix truncated content in README.md
This commit is contained in:
parent
428547bea4
commit
aea3487f07
2 changed files with 28 additions and 6 deletions
32
README.md
32
README.md
|
@ -3,7 +3,7 @@ cube2sphere [![PyPI version](https://badge.fury.io/py/cube2sphere.svg)](https://
|
||||||
|
|
||||||
`cube2sphere` is a Python script to map 6 cube (cubemap, skybox) faces
|
`cube2sphere` is a Python script to map 6 cube (cubemap, skybox) faces
|
||||||
into an equirectangular (cylindrical projection, skysphere) map. See
|
into an equirectangular (cylindrical projection, skysphere) map. See
|
||||||
also [sphere2cube](https://github.com/Xyene/sphere2cube).
|
also [`sphere2cube`](https://github.com/Xyene/sphere2cube).
|
||||||
|
|
||||||
Usage
|
Usage
|
||||||
=====
|
=====
|
||||||
|
@ -62,8 +62,30 @@ This would generate `stitched.tga` in the working directory.
|
||||||
Installation
|
Installation
|
||||||
============
|
============
|
||||||
|
|
||||||
`cube2sphere` can be easily installed with `pip`. It requires a Python 3
|
`cube2sphere` can be easily installed with `pip`. It requires a Python 3 installation.
|
||||||
installation.
|
|
||||||
|
|
||||||
It assumes that Blender is installed and the `blender` executable is
|
It assumes that [Blender](https://www.blender.org/) is installed and the `blender` executable is
|
||||||
listed in the system PATH environment variab
|
listed in the system PATH environment variable. If it is not possible
|
||||||
|
for PATH to be edited (as in the case of an unprivileged user), the path
|
||||||
|
to the `blender` executable may instead be passed through the `-b` flag.
|
||||||
|
|
||||||
|
Windows
|
||||||
|
-------
|
||||||
|
|
||||||
|
Install Blender, and add `blender.exe` to `PATH`. Finally,
|
||||||
|
|
||||||
|
pip install cube2sphere
|
||||||
|
|
||||||
|
Linux
|
||||||
|
-----
|
||||||
|
|
||||||
|
$ apt-get install blender
|
||||||
|
$ pip install cube2sphere
|
||||||
|
|
||||||
|
Mac OS X
|
||||||
|
--------
|
||||||
|
|
||||||
|
Similar to Windows, install Blender, and add the `blender` executable
|
||||||
|
to `$PATH`. Then,
|
||||||
|
|
||||||
|
$ pip install cube2sphere
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
__author__ = 'Xyene'
|
__author__ = 'Xyene'
|
||||||
__version__ = '0.2.0'
|
__version__ = '0.2.1'
|
||||||
|
|
Loading…
Reference in a new issue