Skip to content

Commit

Permalink
fix for outer dots
Browse files Browse the repository at this point in the history
  • Loading branch information
stevedekorte committed Nov 14, 2013
1 parent 876dee1 commit a83b362
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -312,11 +312,20 @@
object.rotation.z = 0
}
}
object.visible = true;
}
else
{
object.visible = false;
var fill_material = new THREE.MeshBasicMaterial(
{
color: 0x000000,
wireframe: Mode.isWireframe,
transparent: true,
opacity: 0.95,
side: THREE.DoubleSide,
wireframeLinewidth: 3
})

object.material = fill_material
}


Expand Down

0 comments on commit a83b362

Please sign in to comment.