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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 5,167
» Latest member: DeCaen
» Forum threads: 6,086
» Forum posts: 51,274

Full Statistics

Online Users
There are currently 580 online users.
» 3 Member(s) | 572 Guest(s)
Applebot, Baidu, Bing, Google, Yandex, Jeff Jones, Rene Rechthaler

Latest Threads
Most Common Parts that re...
Forum: Part Requests
Last Post: Peter Blomberg
9 hours ago
» Replies: 34
» Views: 14,515
Can we get the part 4364p...
Forum: Part Requests
Last Post: Vincent Messenet
11 hours ago
» Replies: 3
» Views: 165
LDraw Additional-Tools-In...
Forum: LDraw.org Announcements
Last Post: Willy Tschager
11 hours ago
» Replies: 0
» Views: 43
LDraw All-In-One-Installe...
Forum: LDraw.org Announcements
Last Post: Willy Tschager
11 hours ago
» Replies: 0
» Views: 40
Modulex parts
Forum: Parts Authoring
Last Post: Chris Böhnke
Yesterday, 15:35
» Replies: 34
» Views: 4,981
New part
Forum: General LDraw.org Discussion
Last Post: Rene Rechthaler
2025-07-18, 20:38
» Replies: 1
» Views: 105
Owl with spread wings
Forum: Part Requests
Last Post: Philippe Hurbain
2025-07-18, 15:16
» Replies: 2
» Views: 151
80503pb01 lute instrument...
Forum: Part Requests
Last Post: N. W. Perry
2025-07-16, 14:24
» Replies: 9
» Views: 6,077
Parts we are Working on -...
Forum: Part Requests
Last Post: Jeff Jones
2025-07-16, 10:14
» Replies: 158
» Views: 153,078
Same set, different sheet...
Forum: Parts Tracker Discussion
Last Post: Magnus Forsberg
2025-07-15, 6:15
» Replies: 8
» Views: 599

 
  Compare 2 files for BOM
Posted by: Jaco van der Molen - 2022-03-14, 21:15 - Forum: LDraw Editors and Viewers - Replies (26)

Hi all,

I have this big model of 12000+ bricks I am working on.
Somewhere on the way, I lost some work :-( and had to redo a few things here and there.
Before the loss of work, however, the model was 99% complete and I was able to restore the lost file and thus its BOM.
Finishing the model, there are some changes and additions here and there and I kind of lost what bricks went missing, got replaced, and are not used anymore.

So, my question: Is there a clever way to compare 2 files to see the difference in the BOM?

Thanks!

Jaco

Print this item

Bug LEGO 71024 Disney Minifigures Scrooge McDuck, Huey, Dewey & Louie
Posted by: Zoltán Tibor - 2022-03-13, 10:44 - Forum: Part Requests - Replies (2)

Hi!

I am looking for these LEGO 71024 Disney Minifigures Scrooge McDuck, Huey, Dewey & Louie!

Thank you very much if you create it! :-)

Best regards.: Zoli



Attached Files
.jpg   41eQcPTqzOL._AC_.jpg (Size: 19.29 KB / Downloads: 38)
Print this item

  LDIStatisticsViewGL
Posted by: Stefan Frenz - 2022-03-11, 18:56 - Forum: LDraw Editors and Viewers - Replies (4)

Inspired by the (very similar) threads here and here by kevlamar, I wrote a tiny viewer that displays a model and checks which triangle is currently shown and which triangle is shown since loading/reset. This is done to calcualte some statistics and to give some sense of how many triangles are really used ("#E" in screenshots) and how many could be removed ("#T-#E").

For the 10218 model, I would assume one could remove about 80% of the triangles without loosing significant detail even if the user is allowed to rotate freely. Screenshot of the rendered original model (934441 triangles):
   

Screenshot of the 148853 triangles identified in some previous rotations (ok, very similar, but not overwhelming for the same perspective):
   

Screenshot of the 785588 removed triangles (mostly studs and face-to-face-triangles):
   

Looking at the 8868 Airtech Claw Rig, about 50% of the triangles are really shown sometimes (587814 of 1104183 after trying really many camera positions):
   

Looking at a tiny 3x3 brick wall, as expected the studs in the lower two rows can be removed and the inner boxes of the upper two rows can be removed, resulting in about 60% savings:
   

Print this item

  2022/2023 LDraw.org Steering Committee announced
Posted by: Willy Tschager - 2022-03-11, 13:18 - Forum: LDraw.org Announcements - Replies (1)

Since we had only 5 confirmed nominees, no election was necessary.

Therefore, the 2022/2023 LDraw.org Steering Committee [1] is:

Gerald Lasser
Philippe Hurbain
Max Martin Richter
Orion Pobursky
Willy Tschager

[1] Try not to confuse the LDraw.org Steering Committee (SteerCo) with the LDraw.org Standards Board (LSB). The Steering Committee sets the course for the LDraw Organization while the Standards Board deals with the LDraw File Format.

Congratulations to the reconfirmed and new members!

Willy Tschager
On behalf of the LDraw.org Steering Committee

Print this item

  MLCad.ini 2022-02 update now available
Posted by: Willy Tschager - 2022-03-11, 13:15 - Forum: LDraw.org Announcements - No Replies

Hi folks,

I just updated the MLCad.ini file accordingly to the latest LDraw.org parts update 2022-02. The .ini file defines (among other things) the parts available in MLCad's, LEOCad's and Bricksmith's minifigure generator.

Download the file from my website: http://www.holly-wood.it/mlcad/mlcad_ini-en.html

Bye, w.

Print this item

  Duplo or Lego Alphabet Script (and question about groups)
Posted by: Mike C - 2022-03-07, 17:20 - Forum: LDraw Editors and Viewers - Replies (2)

Hello everyone,

The attached script (just change .txt to .lua) lets you write words in a Duplo or Lego font. 

Just change the part and factor variables in addLetter to get the different versions. For brevity, the letters are defined using positions by studs and brick height and are multiplied by the factor to get coordinates. As such, they will work for any brick that is 2 studs wide with height 1. 

Code:
function addLetter(color, studOffset, letter)
 
  -- Duplo
  --   local part = '3437.dat'
  --   local factor = ldc.vector(40, -48, 40)
 
  -- Lego
  local part = '3003.dat'
  local factor = ldc.vector(20, -24, 20)
 
Question: Is it possible to add a group in an an LDCad script? I'd like to add the parts in each letter to a group, and then add a group for the entire word. The best example I have seen is in the Add Wall example script, but that just adds the new parts to the selection.

Thank you,
Mike

   



Attached Files
.txt   MJC-Alphabet 1.txt (Size: 7.58 KB / Downloads: 5)
Print this item

  2022-02 Issues
Posted by: Orion Pobursky - 2022-03-07, 5:52 - Forum: Parts Tracker Discussion - Replies (11)

A master thread for issues with the 2022-02 release

Print this item

  LDraw.org 2022-02 Parts Update Now Available
Posted by: Orion Pobursky - 2022-03-07, 5:13 - Forum: LDraw.org Announcements - Replies (4)

The 2022-02 LDraw Parts Update has been now been released. This update adds 366 new files to the core library, including 196 new parts and 12 new primitives.

Thanks are due to all the part authors who created or corrected parts for this release. The small, but dedicated, band of reviewers also play an important role in keeping files moving through the Parts Tracker and deserve just as much credit.

You can preview the new parts in 2022-02 here, and download the zip-file update or Windows install package here. Alternatively you can use the LDView menu option File | Check for Library Updates... to install the update.

Once again, I'm relatively new to this game and am still trying to live up to the standards Chris set. If you note any errors or problems, please do not hesitate to point them out.

Special thanks to Magnus Forsberg and the rest of the core reviewers. We pushed out a massive fix to the axlehole primitives with this update and it wouldn't have been possible without their dedication and attention to detail.

Orion Pobursky
LDraw.org Parts Library Admin

Print this item

  Unattributed edits
Posted by: Orion Pobursky - 2022-03-06, 16:35 - Forum: Parts Tracker Discussion - Replies (6)

The following parts are in danger of losing thier CA status or being reverted to pre-edit status unless we figure out who did the edits:

Quote:parts/4741.dat 27773 1998-01-11 00:00:00 2022-03-06 02:05:12 289 10636 minor changes
parts/4770.dat 27941 2000-09-18 00:00:00 2022-03-06 02:05:14 289 10693 Removed two cylinders and elongated and reposition...
parts/4150ps4.dat 23702 2001-11-22 00:00:00 2022-03-06 02:04:27 289 9119 Fixed gap between pattern and part, untwisted quad...
parts/s/30126a01.dat 43663 2002-01-22 00:00:00 2022-03-06 02:08:41 289 17721 Fixed a triangle at bottom
parts/s/30126s01.dat 43676 2002-01-22 00:00:00 2022-03-06 02:08:41 289 17723 Fixed two small triangle errors
parts/4865d02.dat 28411 2002-02-14 00:00:00 2022-03-06 02:05:20 289 10862 Corrected concave quads, gaps and lines
parts/4865d01.dat 28399 2002-02-14 00:00:00 2022-03-06 02:05:20 289 10861 Corrected concave quads, gaps and lines
parts/s/3068s101.dat 44394 2002-02-21 00:00:00 2022-03-06 02:08:50 289 18032 Fixed gaps, overlapping rings and L3P errors
parts/s/3068c101.dat 44355 2002-02-21 00:00:00 2022-03-06 02:08:50 289 18026 Fixed gaps
parts/s/3068b101.dat 44318 2002-02-21 00:00:00 2022-03-06 02:08:49 289 18006 Fixed gaps
parts/s/3068a101.dat 44306 2002-02-21 00:00:00 2022-03-06 02:08:49 289 18004 Fixed gaps and overlapping regions
parts/s/973p36a.dat 49077 2002-02-22 00:00:00 2022-03-06 02:09:56 289 20475 Closed small gaps in front part
parts/3031.dat 13980 2002-05-07 00:00:00 2022-03-06 02:02:36 289 5804 BFC Certification
parts/3030.dat 13960 2002-05-07 00:00:00 2022-03-06 02:02:35 289 5800 BFC Certification
parts/3029.dat 13925 2002-05-07 00:00:00 2022-03-06 02:02:35 289 5788 BFC Certification
parts/3027.dat 13847 2002-05-07 00:00:00 2022-03-06 02:02:34 289 5770 BFC Certification
parts/3028.dat 13887 2002-05-07 00:00:00 2022-03-06 02:02:35 289 5780 BFC Certification
parts/3032.dat 13985 2002-05-07 00:00:00 2022-03-06 02:02:36 289 5805 BFC Certification
parts/s/3009s01.dat 43586 2002-05-07 00:00:00 2022-03-06 02:08:40 289 17677 BFC Certification
parts/s/3008s01.dat 43566 2002-05-07 00:00:00 2022-03-06 02:08:40 289 17663 BFC Certification
parts/s/3002s01.dat 43480 2002-05-07 00:00:00 2022-03-06 02:08:39 289 17621 BFC Certification
parts/s/3001s01.dat 43472 2002-05-07 00:00:00 2022-03-06 02:08:39 289 17617 BFC certification
parts/3010.dat 12615 2002-05-07 00:00:00 2022-03-06 02:02:22 289 5385 BFC Certification
parts/3001.dat 11306 2002-05-07 00:00:00 2022-03-06 02:02:07 289 4955 BFC Certification
parts/3002.dat 11376 2002-05-07 00:00:00 2022-03-06 02:02:08 289 4987 BFC Certification
parts/3003.dat 11432 2002-05-07 00:00:00 2022-03-06 02:02:09 289 5003 BFC Certification
parts/3004.dat 11562 2002-05-07 00:00:00 2022-03-06 02:02:10 289 5064 BFC Certification
parts/3005.dat 11908 2002-05-07 00:00:00 2022-03-06 02:02:14 289 5174 BFC Certification
parts/3006.dat 12289 2002-05-07 00:00:00 2022-03-06 02:02:17 289 5275 BFC Certification
parts/3007.dat 12322 2002-05-07 00:00:00 2022-03-06 02:02:18 289 5283 BFC Certification
parts/3008.dat 12368 2002-05-07 00:00:00 2022-03-06 02:02:18 289 5294 BFC Certification
parts/3009.dat 12465 2002-05-07 00:00:00 2022-03-06 02:02:19 289 5330 BFC Certification
parts/3011.dat 12902 2002-05-07 00:00:00 2022-03-06 02:02:25 289 5510 BFC Certification
parts/3020.dat 13531 2002-05-07 00:00:00 2022-03-06 02:02:31 289 5664 BFC Certification
parts/3021.dat 13568 2002-05-07 00:00:00 2022-03-06 02:02:31 289 5671 BFC Certification
parts/3022.dat 13614 2002-05-07 00:00:00 2022-03-06 02:02:32 289 5686 BFC Certification
parts/3023.dat 13650 2002-05-07 00:00:00 2022-03-06 02:02:32 289 5699 BFC Certification
parts/3024.dat 13705 2002-05-07 00:00:00 2022-03-06 02:02:33 289 5714 BFC Certification
parts/3026.dat 13810 2002-05-07 00:00:00 2022-03-06 02:02:34 289 5757 BFC Certification


The 3000 series parts were done by a KJM (who's identity I haven't been able to sleuth out) and release in the 2002-03 release. Most of the rest were done by a CSC. 4741 will probably end up being reverted since the editor was undocumented.

Print this item

  Missing Part Request: 87375
Posted by: Derek Finley - 2022-03-06, 6:46 - Forum: Part Requests - Replies (3)

Hello, I would greatly appreciate it if someone could do part: 87375.
It'll greatly help in a moc I'm designing, please and thank you.

https://www.bricklink.com/v2/catalog/cat...conly%22:0}
"Windscreen Quarter Dome, Bar Handles at Top and Bottom"


[Image: 87375.png]

Print this item