Welcome, Guest |
You have to register before you can post on our site.
|
Online Users |
There are currently 433 online users. » 1 Member(s) | 429 Guest(s) Applebot, Bing, Google
|
Latest Threads |
Part request Duplo Item N...
Forum: Part Requests
Last Post: Lawford
1 hour ago
» Replies: 5
» Views: 157
|
Part Request: LEGO LION
Forum: Part Requests
Last Post: Javier Orquera
Today, 2:27
» Replies: 1
» Views: 98
|
Most Common Parts that re...
Forum: Part Requests
Last Post: Gerald Lasser
Yesterday, 20:55
» Replies: 11
» Views: 530
|
6278pb01 - Mario Kart Whe...
Forum: Part Requests
Last Post: Javier Orquera
Yesterday, 17:16
» Replies: 3
» Views: 130
|
Parts Request: NINJAGO ON...
Forum: Part Requests
Last Post: 3CFigs
2025-01-09, 22:57
» Replies: 4
» Views: 329
|
[LDPatternCreator] Releas...
Forum: Parts Author Tools
Last Post: Nils Schmidt
2025-01-09, 21:41
» Replies: 2
» Views: 1,052
|
New parts from Lego Instr...
Forum: Parts Authoring
Last Post: Jeff Jones
2025-01-09, 18:57
» Replies: 53
» Views: 22,839
|
Numbering advise for 3209...
Forum: Parts Authoring
Last Post: Rene Rechthaler
2025-01-08, 17:39
» Replies: 5
» Views: 265
|
Town and Trains 1994
Forum: Official Models
Last Post: Takeshi Takahashi
2025-01-08, 14:38
» Replies: 4
» Views: 1,084
|
Parts we are Working on -...
Forum: Part Requests
Last Post: Jens Brühl
2025-01-08, 0:43
» Replies: 145
» Views: 86,492
|
|
|
0 ROTATION - meanings |
Posted by: Michael Heidemann - 2013-01-03, 11:58 - Forum: LDraw Editors and Viewers
- Replies (1)
|
|
I played a little bit with MLCad and found the following. Maybe it is also interesting for some else.
Code: 0 ROTATION CENTER 0 0 0 1 "Custom1"
0 ROTATION CENTER 2 3 4 1 "New Custom"
There can be several lines like above in your file, depending on how many rotation points you have defined.
The first three numbers are the xyz values of the rotation point
The fourth number indicates the "Allow on-screen change"
The string at the end is the name of that rotation point.
Code: 0 ROTATION CONFIG 1 0
There is only one line like the above with the parameter "CONFIG".
The first number indicates the current aktive point from above list of defined rotatin points.
The second number indicates "Show rotation point"
|
|
|
Reducing part complexity |
Posted by: Mike "Pomax" Kamermans - 2013-01-02, 18:50 - Forum: LDraw File Processing and Conversion
- Replies (5)
|
|
hey all,
now that I have a working JavaScript .dat to .obj converter for using LEGO parts in a WebGL context, I was wondering whether anyone had already tried implementing a complexity reduction algorithm for parts meshes.
At several thousand vertices per part, some of these parts might be better rendered as reduced meshes with some bump/texture mapping that fakes some of the more intricate details (like teeth on cogs, or profile on an axle joiner), not to mention help load larger models, as WebGL only allows ~65k vertices per scene.
Has anyone experimented with this yet?
- Mike
|
|
|
2013/2014 LDraw.org Steering Committee: Call for Nominations |
Posted by: Willy Tschager - 2013-01-02, 11:57 - Forum: LDraw.org Announcements
- Replies (27)
|
|
Per the LDraw.org Bylaws at http://www.ldraw.org/article/268.html, Subsection
6.03(a), the 2012/2013 Steering Committee hereby calls for the community to
nominate individuals as candidates for the 2013/2014 Steering Committee[1].
Please post nominations in response to this message. Nominations will only be
recognized if they are in response to this message.
Per ss.6.03(a), you must specify the name of the person you are nominating,
along with your name. Another member of the community must second the nomination
in a reply, and the nominee must publicly accept the nomination in the same
channel (direct reply to the nomination or second) in order to be valid. If the
nominee does not accept, it will be assumed that he or she has declined, and
they will not be placed on the ballot.
Nominations will close at 11:59 PM GMT on 28 February 2013. This means that to
be listed on the ballot, a candidate must have been nominated, seconded and must
have formally stated acceptance by that time.
The Steering Committee will give sufficient notice of the election and election
procedures per ss.6.03(b).
NOTE: subsection 6.03(b) states that elections should take place before March 1.
We interpret this to mean that we will commence the election on March 1, but
since it is electronic, it will run for 2 weeks, just as last time. The exact
time and date of start and end will be announced sometime very close to (but
after) 0000 GMT March 1.
Again, thanks to all of you for your commitment to the goals of the
organization, and in working with us this year. Please, stay involved with
LDraw.org and keep it moving forward!
Willy Tschager
On behalf of the LDraw.org Steering Committee
--
[1] Try not to confuse the LDraw.org Steering Committee (SteerCo) with the LDraw
Standards Committee (LSC). The Steering Committee sets the course for the LDraw
Organization while the Standards Committee deals with the LDraw File Format.
|
|
|
A JavaScript .dat to .obj converter, for use online |
Posted by: Mike "Pomax" Kamermans - 2012-12-31, 20:42 - Forum: LDraw File Processing and Conversion
- No Replies
|
|
Hi all,
I wrote a JavaScript .dat to .obj converter for use online with things like cubicvr.js and other WebGL rendering libraries - it's free to use, with the source code on https://github.com/Pomax/WebGLdraw (feel free to fork!)
If you spot anything that can do with improvements (like where to look for parts and subparts, for instance) let me know, or if you'd rather fix the code yourself and do a pull request with your better version: also good!
- Pomax
NB: I found testing the result of the converter easiest by running it through GLSViewer, since I'm on windows (it's a tiny 394kb utility for viewing .obj models)
|
|
|
|