Skip to content
/ 3dviz Public
forked from nimadehmamy/3dviz

3D network vis. (simplfied, web-deployable version of 3NeVis. Works with single json file).

Notifications You must be signed in to change notification settings

yifangma/3dviz

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

3D Network Visualization

This is a simplified and lighter version of the 3Nevis project. Simply, make the following json file and uplaod it.

netJSON = {
    'scale': (size of network. used to shrink down the network to fit in screen.)
    'links':{
            'link1': {
                'points': [[xi,yi,zi],...[xf,yf,zf]] (points along the link 2 minimum),
                'radius': r (thickness of the link),
                    },
            'link2': {...},
            ...
            },
     'nodes': {
        'labels':['n0',...,'nN']
        'positions':[[x1,y1,z1],...[xN,yN,zN]] (all nodes at once. labels will be supported later.),
        }

About

3D network vis. (simplfied, web-deployable version of 3NeVis. Works with single json file).

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 88.1%
  • HTML 6.9%
  • CSS 5.0%