Welcome, Guest |
You have to register before you can post on our site.
|
Online Users |
There are currently 440 online users. » 0 Member(s) | 435 Guest(s) Applebot, Baidu, Bing, Google, Yandex
|
Latest Threads |
80503pb01 lute instrument...
Forum: Part Requests
Last Post: N. W. Perry
2025-07-16, 14:24
» Replies: 9
» Views: 5,901
|
Parts we are Working on -...
Forum: Part Requests
Last Post: Jeff Jones
2025-07-16, 10:14
» Replies: 158
» Views: 151,001
|
Modulex parts
Forum: Parts Authoring
Last Post: Chris Böhnke
2025-07-15, 20:30
» Replies: 31
» Views: 4,487
|
Same set, different sheet...
Forum: Parts Tracker Discussion
Last Post: Magnus Forsberg
2025-07-15, 6:15
» Replies: 8
» Views: 391
|
71613/30346c01 too high?!
Forum: Part Requests
Last Post: Chris Böhnke
2025-07-14, 23:21
» Replies: 18
» Views: 4,823
|
5724pr0001 Bubble Canopy ...
Forum: Part Requests
Last Post: SNIPE
2025-07-12, 21:08
» Replies: 2
» Views: 377
|
Friends 2014
Forum: Official Models
Last Post: Takeshi Takahashi
2025-07-11, 16:20
» Replies: 18
» Views: 17,226
|
LDCAD about Add custom p...
Forum: LDraw Editors and Viewers
Last Post: Nate87
2025-07-11, 8:13
» Replies: 5
» Views: 3,289
|
Hi-res logo primitives
Forum: Official File Specifications/Standards
Last Post: Jens Brühl
2025-07-10, 20:40
» Replies: 16
» Views: 2,123
|
Part 5561, Door 1 x 4 x 1...
Forum: Part Requests
Last Post: Gerald Lasser
2025-07-10, 9:55
» Replies: 1
» Views: 490
|
|
|
[split] Teemu's Part Checker |
Posted by: Chris Dee - 2019-06-24, 8:18 - Forum: Parts Author Tools
- Replies (21)
|
 |
(2019-06-16, 9:06)Steffen Wrote: yes please.
we have brought the BFC-problematic files to nearly 0 now.
just a small handful of "weird relicts" are remaining:
https://www.ldraw.org/cgi-bin/ptbfcstatus.cgi
I suggest to delete all of them from the PT:
- one is a "minifig torso + head" physical shortcut assembly which - if we would add these combinations to the library - would make the library size explode due to the possible combination
- the others are mockups which have no visual resemblence with the parts they mimick and are waiting unfinished for years now on the PT.
All now deleted.
|
|
|
Tiles 1 X 8 from latest Architecture sets |
Posted by: Vincent Messenet - 2019-06-24, 7:53 - Forum: Part Requests
- Replies (69)
|
 |
Hi,
Could someone work on 1 x 8 tiles from latest Architecture sets?
"San Francisco":
https://www.bricklink.com/v2/catalog/cat...1#T=C&C=11
"Paris":
https://www.bricklink.com/v2/catalog/cat...1#T=C&C=11
[color=#333333][size=small][size=small][font=Tahoma, Verdana, Arial, sans-serif][color=#333333][size=small][size=small][size=small][font=Tahoma, Verdana, Arial, sans-serif]"[/size][/size][size=small][size=small]Trafalgar Square":[/size][/size][/font][/size][/size][/font][/size][/color][/color]
[color=#333333][color=#333333][size=small][size=small][size=small][font=Tahoma, Verdana, Arial, sans-serif][size=small][size=small][size=small][size=small][font=Tahoma, Verdana, Arial, sans-serif]https://www.bricklink.com/v2/catalog/cat...only%22:0}[/size][/size][/size][/font][/size][/size][/size][/font][/size][/color][/color]
[color=#333333][size=small][size=small][font=Tahoma, Verdana, Arial, sans-serif]"[/size][size=small]Las Vegas"[/size][/font][/size][/color][color=#333333][size=small][size=small][size=small][size=small][font=Tahoma, Verdana, Arial, sans-serif]:[/size][/size][/font][/size][/size][/color]
https://www.bricklink.com/v2/catalog/cat...1#T=C&C=11
"Shanghai":
https://www.bricklink.com/v2/catalog/cat...0#T=C&C=11
"Statue of Liberty":
https://www.bricklink.com/v2/catalog/catalogitem.page?id=166139#T=C&C=11
"Great Wall Of China":
https://www.bricklink.com/v2/catalog/cat...6#T=C&C=11
and also its variant with Asian characters:
https://www.bricklink.com/v2/catalog/catalogitem.page?id=166357#T=C&C=11
All are done now. Thanks to all authors!
Many thanks!
|
|
|
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!!
|
|
|
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.
|
|
|
|