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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 5,850
» Latest member: Ferrel
» Forum threads: 6,485
» Forum posts: 53,703

Full Statistics

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

Latest Threads
[LDPE] 1.8.97 Released (s...
Forum: Parts Author Tools
Last Post: Nils Schmidt
11 hours ago
» Replies: 8
» Views: 2,363
[LDPE] 1.8.95 Released (p...
Forum: Parts Author Tools
Last Post: Nils Schmidt
11 hours ago
» Replies: 8
» Views: 6,378
47430 messurements
Forum: Parts Authoring
Last Post: Jeff Jones
Yesterday, 12:41
» Replies: 1
» Views: 154
Wheels needed for Set 772...
Forum: Part Requests
Last Post: Alfred Schmitz
Yesterday, 9:02
» Replies: 10
» Views: 1,813
2026 - New Parts -> Raw M...
Forum: Part Requests
Last Post: Gerald Lasser
Yesterday, 6:50
» Replies: 26
» Views: 5,345
Bionicle Tahu Cosplayer f...
Forum: Part Requests
Last Post: Chris Böhnke
2026-05-10, 19:04
» Replies: 20
» Views: 1,347
Updates available for MLC...
Forum: LDraw Editors and Viewers
Last Post: Manfred Schaefer
2026-05-10, 13:27
» Replies: 2
» Views: 313
LDraw.org Official Parts ...
Forum: Parts Tracker Discussion
Last Post: Peter Blomberg
2026-05-09, 18:03
» Replies: 6
» Views: 951
"Fixing" Older Stickers (...
Forum: Parts Authoring
Last Post: Chris Böhnke
2026-05-09, 17:17
» Replies: 0
» Views: 146
Existing Part Edit Reques...
Forum: Parts Authoring
Last Post: Rene Rechthaler
2026-05-09, 16:00
» Replies: 165
» Views: 415,153

 
  Spliting ndis prims
Posted by: Johann Eisner - 2019-06-21, 15:00 - Forum: Parts Authoring - Replies (2)

Small question by the side.
Is it allowed to split ndis-prims or must be a 4-4ndis around a 4-4ring as well?

see attached picture.



Attached Files
.png   ndis.PNG (Size: 30.99 KB / Downloads: 45)
Print this item

  PT Page Update Tracker
Posted by: Orion Pobursky - 2019-06-20, 16:20 - Forum: Website Suggestions/Requests/Discussion - Replies (9)

A list of all the web accessible PT pages and their update status:

Done:
https://www.ldraw.org/library/tracker
https://www.ldraw.org/cgi-bin/tracker/activity.cgi
https://www.ldraw.org/library/tracker/ref/policy/
https://www.ldraw.org/cgi-bin/ptdetail.cgi
https://www.ldraw.org/cgi-bin/pthist2.cgi?h=10&i=15
https://www.ldraw.org/cgi-bin/tracker/submit.cgi
https://www.ldraw.org/cgi-bin/tracker/review.cgi
https://www.ldraw.org/cgi-bin/tracker/myreviews.cgi
https://www.ldraw.org/cgi-bin/tracker/mysubmits.cgi
https://www.ldraw.org/library/tracker/tools/
https://www.ldraw.org/library/tracker/ref/
https://www.ldraw.org/library/tracker/tree/
https://www.ldraw.org/library/tracker/status/
https://www.ldraw.org/library/tracker/ref/catkeyfaq/
https://www.ldraw.org/cgi-bin/ptpatterns.cgi
https://www.ldraw.org/cgi-bin/ptscan.cgi
https://www.ldraw.org/cgi-bin/ptqueue.cgi

Errors on computer resolution:
None!

Errors on mobile resolution:
https://www.ldraw.org/cgi-bin/ptbfcstatus.cgi (can probably retire)
https://www.ldraw.org/library/primref/
https://www.ldraw.org/cgi-bin/tracker/adminedit.cgi (will not be fixed)
https://www.ldraw.org/cgi-bin/tracker/pt...editCA.cgi (will not be fixed)

Error free but old markup:
https://www.ldraw.org/cgi-bin/ptlist.cgi (table at bottom only)
https://www.ldraw.org/cgi-bin/ptfilecheck.cgi
https://www.ldraw.org/cgi-bin/ptdatdiff.cgi
https://www.ldraw.org/cgi-bin/tracker/ptsubmitalias.cgi
https://www.ldraw.org/cgi-bin/tracker/pt...colour.cgi
https://www.ldraw.org/library/tracker/ref/faq/
https://www.ldraw.org/library/tracker/ref/reviewfaq/
https://www.ldraw.org/library/tracker/ref/numberfaq/
https://www.ldraw.org/library/tracker/ref/filetypesfaq/
https://www.ldraw.org/library/tracker/ref/patterns/
https://www.ldraw.org/library/tracker/ref/reviewinfo/
https://www.ldraw.org/library/tracker/ref/l3pmsg/
https://www.ldraw.org/cgi-bin/tracker/ptuserlist.cgi

Print this item

  Need help with primitives
Posted by: Vincent Messenet - 2019-06-20, 8:27 - Forum: Parts Authoring - Replies (2)

Hi,

I'm working right now on a part, its image is available here: https://imgur.com/NzGgDBp

I try to use primitives as far as I can because there are many rounded parts.

So far I have been able to do the attached file but now I'm stuck because I cannot use a ndis primitive to continue further because the vertex will be in the black border. Could you please help me identifying which primitive I can use to complete that part or perhaps what change should be done to move forward?

Thanks for your help!


.dat   3070bpb118 WIP.dat (Size: 7.63 KB / Downloads: 4)

Print this item

  LDView povray export
Posted by: Michael Horvath - 2019-06-20, 6:47 - Forum: LDraw File Processing and Conversion - Replies (18)

Here are some things I suggest for LDView's povray export. They all make things easier when using an external file to set variables, which I do often. I.e. I will create a "wrapper" file that is used in common by several scenes.

1. Precede all variable declarations with #IFNDEF. For instance:

Change this

Code:
#declare LDXQual = 3;

To this

Code:
#ifndef (LDXQual) #declare LDXQual = 3; #end

2. Check the variable's value when disabling lights and camera. For instance:

Change this

Code:
// Camera
#ifndef (LDXSkipCamera)
camera {
    #declare LDXCamAspect = image_width/image_height;
    location LDXCameraLoc
    sky LDXCameraSky
    right LDXCamAspect * < -1,0,0 >
    look_at LDXCameraLookAt
    angle 77.011589
}
#end

To this

Code:
// Camera
#ifndef (LDXSkipCamera) #declare LDXSkipCamera = false; #end

#if (LDXSkipCamera = false)
camera {
    #declare LDXCamAspect = image_width/image_height;
    location LDXCameraLoc
    sky LDXCameraSky
    right LDXCamAspect * < -1,0,0 >
    look_at LDXCameraLookAt
    angle 77.011589
}
#end

3. Create a variable to enable/disable the background. For instance:

Code:
#if (LDXShowBackground = true) background { color rgb <LDXBgR,LDXBgG,LDXBgB> } #end

4. Lastly, if you could do the camera calculations inside the POV file instead of "hardcoding" the values, that would be great. For instance, start with latitude, longitude and radius to generate the camera location; then translate the camera based on the center of the bounding box. (I'm not 100% sure exactly what LDView does to output the camera.)


Thank you!!

Print this item

  0 BFC NOCLIP
Posted by: Steffen - 2019-06-19, 23:56 - Forum: Parts Authoring - Replies (19)

I just stumbled over files on the PT containing
0 BFC NOCLIP
...
0 BFC CLIP
sections, for example
https://www.ldraw.org/cgi-bin/ptdetail.c...02ap03.dat

I think we need to decide if those sections shall be
* kept or
* removed.

They usually enclose the patterned areas of a part.

I think the reason why they were added (probably long time ago) was
that somebody thought "hmm. these patterns could be visible from behind
when the part itself is being used in a transparent color".

However, that reasoning is based on a wrong assumption I think.
Maybe the tools of older times needed such statements, but today, these lines are not necessary.

Especially it makes no sense to just include the pattern by those lines.
If the argumentation towards having these lines would be correct, then the whole part
would need to be BFC NOCLIP.

But as said, the reasoning behind the addition of these lines is probably wrong I think:

As soon as a part is using transparent portions, these portions allow to see other surfaces "from behind".
It does not matter whether those other surfaces are colored (patterns) or color 16.

Therefore, 3D rendering software anyway must have an implementation for dealing with that problem.
Usually its solution will be to simply turn off BFC at all for parts that contain transparent portions.
That would be the only way to get a correct rendering for all such parts as a general solution.

Therefore it is not necessary that such parts individually and additionally enclose some of their implementation by
0 BFC NOCLIP.
Doing that is a kind of "poor man's solution" to the overall 3D rendering problem just described.

And most of the current files on the PT incompletely solve that problem,
because they do not include their color 16 surfaces in that section.

It follows:
these sections should be removed I think.

Print this item

  No Attachement...?
Posted by: Stefan Weinert - 2019-06-19, 18:57 - Forum: Help - No Replies

... Dodgy did not understand how I could attach attachments, has now worked

Print this item

  My second LDraw Project
Posted by: Stefan Weinert - 2019-06-19, 18:53 - Forum: MOCs (My Own Creations) - Replies (12)

...and that´s my second project.

https://rebrickable.com/users/legolaus/profile/
https://bricksafe.com/pages/legolaus/con...-swap-body
https://bricksafe.com/pages/legolaus/des...-of-google
https://bricksafe.com/pages/legolaus

I also try to convert the old projects into ldraw
Best Regards
Stefan



Attached Files
.mpd   Desk Lamp in the Colors of Google.mpd (Size: 59.49 KB / Downloads: 11)
Print this item

  My first LDraw Project
Posted by: Stefan Weinert - 2019-06-19, 18:47 - Forum: MOCs (My Own Creations) - No Replies

Hi, I'm new to this forum and was kindly asked, I should put some projects. This is my first project under the guidance of Johann. I still have a lot to learn, but I try



Attached Files
.mpd   Container-Wechselbruecke LPub3D Geschlossen.mpd (Size: 46.12 KB / Downloads: 12)
Print this item

  Access
Posted by: Stefan Weinert - 2019-06-18, 19:12 - Forum: Help - Replies (1)

Hello guys,
I've been a member here for about two weeks now and still can't access my private messages. Can you help me?

Best regards
Stefan

Print this item

Thumbs Up Thanx
Posted by: Stefan Weinert - 2019-06-18, 19:09 - Forum: General LDraw.org Discussion - Replies (4)

Hello dear team,
I'm new here, Johann has recommended me the forum. I have successfully completed two projects with the ldraw package and would like to thank you for the excellent software. you are doing a great job!

best regards
Stefan
[Image: thumbsup.png]

Print this item