Downloads

Binary downloads

Precompiled binaries of 3Di Viewer “Rei” are available for download: binary download.

Source code downloads

The source code is stored in git repositories, and to download the latest version you need a git client program. msysgit is a console based git client program can be found here: http://code.google.com/p/msysgit/downloads/list

Structure of the code repositories

The source code for 3Di Viewer “Rei” consists of four packages:

  1. Application, including in-browser ActiveX control for Internet Explorer
  2. Libraries
  3. API code
  4. Firefox plugin

These packages need to be downloaded separately, as they are stored in different git repositories.

It is not necessary to download the source code for the libraries (2) and API code (3), since these are included in binary form as DLL files distributed with the main application (1). And, you only need to download the Firefox plugin source code (4) if you are interested in compiling Firefox support; Internet Explorer support by means of ActiveX is already included in the main application (1).

If you want to compile everything from source code, you should download (clone) all of the repositories, as described below.

Using git to clone the repositories

Create a folder somewhere which will contain the source files (from now on called the SRC folder), and open a command window (terminal). Use “cd” to navigate to the SRC folder and download the source using these commands:

  • git clone git://github.com/3di/3di-viewer-rei.git
  • git clone git://github.com/3di/3di-viewer-rei-libs.git
  • git clone git://github.com/3di/3di-viewer-rei-api.git
  • git clone git://github.com/3di/3di-viewer-rei-firefox.git

Please note that the source code licenses are approximately as follows:

  • 3di-viewer-rei: BSD license
  • 3di-viewer-rei-libs: zlib or BSD license
  • 3di-viewer-rei-api: LGPL license
  • 3di-viewer-rei-firefox: LGPL license

Please see the license documentation in each project for more information.

The compilation instructions for each package are covered in the compilation instructions.

Comments are closed.