Welcome, Guest
You have to register before you can post on our site.

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 5,309
» Latest member: Krzysztof
» Forum threads: 6,175
» Forum posts: 51,773

Full Statistics

Online Users
There are currently 276 online users.
» 0 Member(s) | 272 Guest(s)
Applebot, Bing, Google, Yandex

Latest Threads
A fresh list of "most com...
Forum: Part Requests
Last Post: Chris Böhnke
46 minutes ago
» Replies: 2
» Views: 178
Lego Town Racer 1996 - 63...
Forum: Official Models
Last Post: Chris Böhnke
51 minutes ago
» Replies: 14
» Views: 1,584
Eyesight on Linux
Forum: Rendering Techniques
Last Post: Orion Pobursky
5 hours ago
» Replies: 12
» Views: 8,256
Another common varient: 1...
Forum: Part Requests
Last Post: Rene Rechthaler
2025-09-12, 14:51
» Replies: 8
» Views: 5,325
Fix for slightly incorrec...
Forum: Part Requests
Last Post: Gerald Lasser
2025-09-12, 14:13
» Replies: 3
» Views: 507
1Lx1Lx2L brick with studs...
Forum: Parts Authoring
Last Post: SNIPE
2025-09-12, 10:14
» Replies: 0
» Views: 406
LDraw Colors for OpenScad
Forum: LDraw Editors and Viewers
Last Post: Hageta
2025-09-12, 10:03
» Replies: 0
» Views: 367
Img4Dat integrated in LDP...
Forum: Parts Authoring
Last Post: Nils Schmidt
2025-09-11, 20:04
» Replies: 6
» Views: 820
TXT2DAT integrated in LDP...
Forum: Parts Author Tools
Last Post: Nils Schmidt
2025-09-11, 19:47
» Replies: 4
» Views: 885
Here is the raw version o...
Forum: Part Requests
Last Post: Peter Grass
2025-09-11, 4:39
» Replies: 2
» Views: 754

 
  Question about edges
Posted by: Roland Melkert - 2013-03-08, 20:41 - Forum: Parts Authoring - Replies (33)

Question to the part experts:

Do the edge line main points (nearly) always share a point with normal triangle and quad points. Or do they often ''float' between normal geometry points?

I would like to know this in relation to the current library, not the latest authoring specs.

Print this item

  New LDD version (4.3.6)
Posted by: Philippe Hurbain - 2013-03-08, 10:54 - Forum: General LDraw.org Discussion - Replies (14)

...with some 250 new shapes...

Print this item

  New Forum Theme
Posted by: Orion Pobursky - 2013-03-08, 10:45 - Forum: Website Suggestions/Requests/Discussion - Replies (5)

I'm working on updating the forum them to better sync with the main site. Progress can be seen in the New Theme Forum I set up. There are quite a few rendering errors as this is still very much a work in progress. Some error are just styles I haven't dealt with yet, some are browser specific. I will try to make it render properly on Webkit and Gecko based browsers since that's what I have on my Mac. IE users will prolly be fine as long as you're running version 8+.

Also, does anyone use the jump menu? If not I think I'm going to get rid of it.

Print this item

  Scaling of Studs in the Y direction?
Posted by: Mark Kennedy - 2013-03-08, 10:31 - Forum: Parts Authoring - Replies (8)

What are the official rules for scaling studs along the y axis? Am I correct that it is acceptable for underside studs, but not top studs? Personally I find no problem with the scaling of type 2 studs, but I've seen others place hold votes on files containing scaled type 2 studs.

Print this item

  Bended net
Posted by: Stan Isachenko - 2013-03-08, 6:47 - Forum: Part Requests - Replies (3)

I am creating sets from dino island to render them, but have problem. There are bended nets. A long time ago i saw this tool. Net generator is xls file. But i do not understand how to use it. If some one can make net for this model.



Attached Files
.ldr   car(chain).ldr (Size: 7.36 KB / Downloads: 0)
Print this item

  XML to LDR
Posted by: Arthur Sigg - 2013-03-06, 17:21 - Forum: LDraw File Processing and Conversion - Replies (15)

Hi at all,

Does anyone know if it possible to convert a XML file generated by pictobrick to a LDR file ?
pictobrick's XML shows the bricks (plates) in any row as a sequence of parts, row for row.
Such a conversion must be easy but browsing around for hours I couldn't finding such a tool.

Thanks for any help,

Arthur Sigg

Print this item

Thumbs Up Monorail Switches
Posted by: Max Martin Richter - 2013-03-05, 21:04 - Forum: Part Requests - Replies (2)

Hej guys,
I got a request from the German LUG 1000steine.de that some members would like to have the switches 2890 and 2889 as LDraw parts. As I don't have the part and the part is to complex for a photo based worked, I hope that here is someone who wants to accept this challenge. Thanks

/Max

Print this item

  Level of Detail for Parts
Posted by: Ben Supnik - 2013-03-04, 2:54 - Forum: Parts Authoring - Replies (11)

Hi Y'all,

I hit a bottleneck in my performance optimization work with BrickSmith: LDraw parts have no concept of "level of detail."

If I open Datsville, I'm staring at 125,000,000 vertices. They aren't all necessary when drawing the entire model in an 800 x 600 window, but there isn't any meta-data to help me drop some of them.

This is half of the level-of-detail problem: for very low-resolution rendering of huge models, the parts are too detailed, burning GPU power. The flip side of this is that close up, the studs look like prisms and not cylinders because of the low vertex count.

This got me thinking: if parts (or sub-parts) had a level-of-detail scheme (with multiple versions of the parts for different resolutions) we could have our cake and eat it: for wide views a stud could be a cube or some other super-crude, super-cheap structure. At high res we could crank the vertex count, eliminating the need for viewers to do ad-hoc sub-part substitution.

Here's the question I have: how could/should a renderer decide _which_ level of detail to draw? I can think of a few heuristics:

- The levels of detail are arbitrary; the client program picks one based on current performance and context. In other words, when you say "export PNG" the highest level is always used. During rendering, the program steps down LOD one notch any time the framerate drops below 10 fps and cranks it up one notch any time it exceeds 30 fps.

- Levels of detail are based on scale. In other words, each level of detail specifies a range of pixels that an LDU covers. If the rendering scale is such that an LDU is less than "X" pixels, we go to the next LOD.

- (If LODs are based on scale, then we have to ask whether the cut-over points should be arbitrary or specified in the spec or library standards. There's a big technical win for programs if there aren't a million different cut-over points.)

Are the LODs advisory or required in their cut-over points (for programs that understand LOD)? Thoughts?

My hope with LOD is that with a little bit of work on a very small number of sub-parts, we could make a big difference. For examlpe, just by creating an octagon low-LOD stud, we could cut 90,112 vertices from every 32x32 baseplate - there are only 3 sub-parts that would need modification in this case. I think the strong factoring of the part library could be a big win here.

Cheers
Ben

Print this item

  File with all program that are LDraw relevant
Posted by: Michael Heidemann - 2013-03-03, 18:49 - Forum: All Other Programs. - Replies (12)

Hi,
I often faced the problem to get the locations of other LDraw related applications like LDView, MLCad or LDDP, just to name the most popular in the past.

It would be great if we could have one file that stores all these informations.

This information file, lets call it maybe "LDrawTools.xml" should be stored in the LDraw base folder. So if I got the information from the enviroment variable %LDRAWDIR% I also know where all the other apps are located by reading just this single file.

Any new application should add its own entry in this file once it is started the first time.

What do you think?

Suggestion for the structure of the "LDrawTools.xml":

Code:
<LDrawApps>
    <Apps>
        <App>
            <Name>
                MLCad
            </Name>
            <Location>
                c:\Programm\MLCAD\mlcad.exe
            </Location>
        </App>
        <App>
            <Name>
                LDDP
            </Name>
            <Location>
                c:\Programm\LDDP\LDDP.exe
            </Location>
        </App>
        <App>
            <Name>
                LDView
            </Name>
            <Location>
                c:\Programm\LDView\LDview.exe
            </Location>
        </App>    
    </App>
</LDrawApps>

Print this item

  LETGUI 1.7.1.0
Posted by: Michael Heidemann - 2013-03-02, 23:10 - Forum: Parts Author Tools - No Replies

I just released a new version of LETGUI.

Now also version 1.1 of Selector is supported.

Please leave your comments for this version in this thread. Thanks.

cu
mikeheide

LETGUI website

Print this item