Skip to content

Commit

Permalink
Added convex walls feature. Updated email address and version number.
Browse files Browse the repository at this point in the history
  • Loading branch information
Toby Nelson authored and Toby Nelson committed Jun 18, 2017
1 parent 79db3d9 commit 892b4bc
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ It's intended to be accurate, compatible, and fast (in that order of priority).
+ Studs can include the **LEGO logo** on them, adding extra geometry.
+ **Gaps between bricks** - Optionally adds a small space between each brick, as in real life.
+ **Smart face smoothing** - Uses Edge-Split Modifier and Sharp Edges derived from Ldraw lines, for smooth curved surfaces and sharp corners.
+ **Concave walls** - Optionally look as if each brick has very slightly concave walls (with the photorealistic renderer), which affects the look of light reflections.
+ **Fast** - even large models can be imported in seconds.

![Ghostbusters](./images/ghostbusters_960.png)
Expand Down Expand Up @@ -58,7 +59,7 @@ It's intended to be accurate, compatible, and fast (in that order of priority).
![Tugboat](./images/tugboat_960.png)

## History ##
This plug-in is by Toby Nelson (toby@tnelson.demon.co.uk) and was initially written in May 2016.
This plug-in is by Toby Nelson (tobymnelson@gmail.com) and was initially written in May 2016.

It was inspired by and initially based on code from [LDR-Importer](https://github.com/le717/LDR-Importer) but has since been completely rewritten.

Expand All @@ -68,6 +69,9 @@ It was inspired by and initially based on code from [LDR-Importer](https://githu

*Import LDraw* is licensed under the [GPLv2](http://www.gnu.org/licenses/gpl-2.0.html) or any later version.

## Thanks ##
Thanks to [BertVanRaemdonck](https://github.com/BertVanRaemdonck) for the 'concave walls' feature, and for the useful feedback and suggestions.

## External References ##
<a href="https://www.blender.org/"><img align="left" src="./images/logos/blender-plain.png" alt="Blender logo" style="margin: 0px 10px 0px 0px;"/></a>

Expand Down
4 changes: 2 additions & 2 deletions __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
bl_info = {
"name": "Import LDraw",
"description": "Import LDraw models in .mpd .ldr .l3b and .dat formats",
"author": "Toby Nelson <toby@tnelson.demon.co.uk>",
"version": (1, 0, 9),
"author": "Toby Nelson <tobymnelson@gmail.com>",
"version": (1, 1, 0),
"blender": (2, 76, 0),
"location": "File > Import",
"warning": "",
Expand Down
2 changes: 1 addition & 1 deletion __version__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# -*- coding: utf-8 -*-
version = (1, 0, 9)
version = (1, 1, 0)
2 changes: 1 addition & 1 deletion loadldraw/loadldraw.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
Accepts .mpd, .ldr, .l3b, and .dat files.
Toby Nelson - toby@tnelson.demon.co.uk
Toby Nelson - tobymnelson@gmail.com
"""

import os
Expand Down

0 comments on commit 892b4bc

Please sign in to comment.