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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 5,419
» Latest member: PatrTher
» Forum threads: 6,245
» Forum posts: 52,218

Full Statistics

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

Latest Threads
The colour of textures in...
Forum: Parts Authoring
Last Post: Travis Cobbs
19 minutes ago
» Replies: 3
» Views: 88
Keywords and invalid 0 li...
Forum: Parts Tracker Discussion
Last Post: Orion Pobursky
2025-11-03, 22:17
» Replies: 6
» Views: 145
Minifigure Head MINI HEAD...
Forum: Part Requests
Last Post: Bailey Meyer
2025-11-03, 20:37
» Replies: 5
» Views: 368
Friends 2025
Forum: Official Models
Last Post: Philippe Hurbain
2025-11-02, 19:24
» Replies: 1
» Views: 289
Technic 1990
Forum: Official Models
Last Post: Takeshi Takahashi
2025-11-02, 15:05
» Replies: 14
» Views: 18,379
Sorting by date
Forum: Website Suggestions/Requests/Discussion
Last Post: Peter Blomberg
2025-11-01, 10:22
» Replies: 5
» Views: 480
Parts request , spider we...
Forum: Part Requests
Last Post: Peter Grass
2025-10-31, 11:23
» Replies: 1
» Views: 205
Part 4070 differences in ...
Forum: Parts Authoring
Last Post: Peter Grass
2025-10-31, 10:58
» Replies: 7
» Views: 624
Empty file with MLCad
Forum: Parts Authoring
Last Post: Orion Pobursky
2025-10-30, 0:20
» Replies: 2
» Views: 291
Duplo parts not yet in LD...
Forum: Part Requests
Last Post: Peter Grass
2025-10-29, 9:46
» Replies: 16
» Views: 2,308

 
  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: 10)
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: 11)
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

  Manometer
Posted by: Stefan Weinert - 2019-06-18, 18:28 - Forum: Part Requests - Replies (7)

Hello, could you draw this part for the library?
https://rebrickable.com/parts/64065/pneu...eter-9641/

Print this item