Skip to content
This repository has been archived by the owner on Feb 27, 2019. It is now read-only.

andywar65/dxf2vr

Repository files navigation

DXF 2 VR

A Django / Wagtail app that imports DXF files and renders Virtual Reality using A-Frame library.

This project has been discontinued. Further development at PYMba.

How to get DXF files

DXF files are drawing exchange files, and they are human readable (if in ASCII format). Obviously you will need a CAD if you want to generate your own files. For free I recommend NanoCAD even if you won't be able to work with solids. It doesn't matter, you won't need them. Unfortunately open source CAD projects never match the industry.

Lots of programs deal with DXF, but the goal here is to have blocks with attributes (data!), not just surfaces. Refer to the DXF constraints paragraph to understand what your files have to look like.

Install Wagtail app

The app can be cloned or downloaded from Github. Using a shell get into the project folder and type git clone https://github.com/andywar65/dxf2vr. Add dxf2vr to the INSTALLED_APPS in your settings file. Migrate. The app's templates look for a base.html file, so be sure to have one.

DXF constraints

Generate a DXF in ascii mode and don't try to modify it. DXF is a sequence of key / value pairs, and deleting just one line can break up everything. By now only 3Dfaces and standard blocks (see further) can be translated, other entities will just be ignored. Create as many layers as you need, and place your entities on the desired one. Layers relate to the appearance of the entity, how it's explained in the backend paragraph.

To include meshes, explode them to 3Dfaces (I know it's bad, but this is how it works by now). If you have an Acis solid, use 3DCONVERT to obtain a mesh, then explode it.

Standard blocks

Standard blocks may be found in static/samples/standard-blocks.dxf bundled within the app: box, cylinder, cone, sphere, circle, plane, look-at, text, links and lights. These mimic entities of the A-Frame library, with unit dimensions. Insert the block and scale it to the desired width, length and height. You can rotate it along all axis (previous limitations solved thanks to Marilena Vendittelli). You can explode the standard blocks without affecting geometry: they will degrade to a series of 3D faces.

Standard blocks come with attributes that affect their geometry. In CAD, attributes are prompted when inserting a block, and can be modified in the Property window. To understand how attributes affect geometry, refer to A-Frame Documentation .

Light standard block has a type attribute which can be set to ambient, directional, point and spot. Refer to A-Frame Light Component Documentation for further details.

Look-at standard block is a plane that always faces the camera.

Text standard block is a text centered in a bounding plane. The attributes control alignment, content and wrap count, which is the number of letters that fill the width of the bounding plane.

Link standard block allows you to link different pages on a click. The Tree attribute lets you select among parent, previous, next and first child page. If target has an equirectangular image (see backend paragraph) it will appear in the link.

Wagtail backend

Create a page of the Dxf2Vr Page kind. You will have to enter a Title and an Intro for the page, and an Equirectangular Image for the background (if none, a default one will be picked). Equirectangular images are like those planispheres where Greenland is bigger than Africa. In the Visual Settings panel you will have to check if you want your shadows on, if you want your camera to be able to fly and if 3D faces must be double sided.

Then load the most important stuff: the DXF file. It will be stored in the media/documents folder. After that, you may create as many Material Gallery items as the layers used in the DXF file. Each material needs a Name that must match the layer name (default is 0), an Image that will be applied to the entity and a Color. If the image is a 1x1 meter pattern, check the appropriate box. Default color is white, but you can use hexadecimal notation (like #ffffff) or standard HTML colors. Color affects appearance of the image. If you don't add materials, elements will be just white.

Okay, now publish and go to the frontend to see how your model behaves.

Interaction

The model window is embedded within your website, but you can go fullscreen by pressing F or the visor icon in the right bottom corner of the window. On some mobiles the image will be split in two, with stereoscopic effect. You will need one of those cardboard headgears to appreciate the effect. Press ESC to exit fullscreen mode. On laptops, if you want to look around, you have to press and drag the mouse. To move around press the W-A-S-D keys. On some mobiles you literally walk to explore the model, but I've never experienced that. Last but not least, press the Ctrl+Alt+I to enter the Inspector mode, that makes you inspect and modify the entities of the model. Modifications can be saved to HTML files.

Next improvements

Add a Wall standard block and models for walls and wall finishing.

About

Discontinued. Further development in PYMba

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published