Skip to content

rfzeg/blueprint3d

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

See it

This repository includes an example application built using blueprint3d:

What is this?

This is a customizable application built on three.js that allows users to design an interior space such as a home or apartment. Below are screenshots from our Example App (link above).

  1. Create 2D floorplan:

floorplan

  1. Add items:

add_items

  1. Design in 3D:

3d_design

Developing and Running Locally

To get started, clone the repository and ensure you npm >= 3 and grunt installed, then run:

npm install
grunt

The latter command generates example/js/blueprint3d.js from src.

The easiest way to run locally is to run a local server from the example directory. There are plenty of options. One uses Python's built in webserver:

cd example

# Python 2.x
python -m SimpleHTTPServer

# Python 3.x
python -m http.server

Then, visit http://localhost:8000 in your browser.

Contribute!

This project requires a lot more work. In general, it was rushed through various prototype stages, and never refactored as much as it probably should be. We need your help!

Please contact us if you are interested in contributing.

Todos

  • More complete documentation (based on the TypeDoc comments)
  • Test suite (e.g. jasmine)
  • Make it easier to build a complete application using blueprint3d (cleaner API, more inclusive base, easier integration with a backend)
  • Better serialization format for saving/loading "designs"
  • Remove the dependency on jquery from the core source!
  • Better use of npm conventions and packaging
  • Various bug fixes
  • refactor three/* - use of classes, lambdas
  • update to current threejs
  • introduce a more formal persistency format
  • put all relevant settings into Core.Configuration to make them read-/writeable, User settings?
  • complete type docs for all entities
  • there're a few TODO_Ekki's left, kill them all

Directory Structure

src/ Directory

The src directory contains the core of the project. Here is a description of the various sub-directories:

core - Basic utilities such as logging and generic functions

floorplanner - 2D view/controller for editing the floorplan

items - Various types of items that can go in rooms

model - Data model representing both the 2D floorplan and all of the items in it

three - 3D view/controller for viewing and modifying item placement

example/ Directory

The example directory contains an application built using the core blueprint3d javascript building blocks. It adds html, css, models, textures, and more javascript to tie everything together.

Docker: Launching a Web Server Automatically Upon Container Start

Build the new image by running this command from within the project's root directory:

docker build -t blueprint3d-image .

Then, run a container from this new image, and remove it when it exits:

docker run -it --rm --name blueprint3d_container blueprint3d-image

Open a web browser and paste the IP address in the address bar to see the application served by the HTTP server running inside the Docker container.

Docker: Launching a Web Server Manually Inside a Container

To run a container from the above image, and open an interactive Bash shell inside it:

docker run --rm -it --name blueprint3d_container blueprint3d-image /bin/bash

To bind the server to the host machine's IP address, get the IP address of the running Docker container:

docker inspect -f '{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' blueprint3d_container

This command will output the container's IP address, which is used in the next step:

172.17.0.2

Inside the container, use python to start a HTTP server:

python3 -m http.server 8000 --bind 172.17.0.2

The final step is to open a web browser and paste the IP address in the address bar to access the web page.

License

This project is open-source! See LICENSE.txt for more information.

About

Build interior spaces in 3D

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 79.7%
  • JavaScript 14.4%
  • HTML 4.5%
  • Other 1.4%