Welcome, Guest |
You have to register before you can post on our site.
|
Forum Statistics |
» Members: 5,255
» Latest member: dumpstop9
» Forum threads: 6,145
» Forum posts: 51,620
Full Statistics
|
Online Users |
There are currently 971 online users. » 1 Member(s) | 967 Guest(s) Baidu, Bing, Google
|
|
|
Pattern Base Part |
Posted by: Orion Pobursky - Yesterday, 3:51 - Forum: Parts Tracker Discussion
- Replies (2)
|
 |
Here's a list of every patterned part that doesn't have a base part:
(List generated 8/23/2025)
parts/15336p01.dat
parts/15336p02.dat
parts/27039p01.dat
parts/39367p01.dat
parts/39367p02.dat
parts/47510p01.dat
parts/49242p01.dat
parts/49295p01.dat
parts/49295p02.dat
parts/49295p03.dat
parts/60235p01.dat
parts/60237p01.dat
parts/62575p01.dat
parts/65082p01.dat
parts/65497p01.dat
parts/65551p01.dat
parts/65552p01.dat
parts/65834p01.dat
parts/65834p02.dat
parts/67100p01-f1.dat
parts/67611p01.dat
parts/77127p01.dat
parts/90391p01.dat
parts/90391p02.dat
parts/t1094k01p01.dat
parts/t1094k02p01.dat
parts/t1094k02p02.dat
parts/t1094p01.dat
parts/t1095k01p01.dat
parts/t1095p01.dat
parts/t1096p01.dat
parts/t1097p01.dat
parts/u572p01.dat
parts/u572p02.dat
parts/u9534p01.dat
parts/u9537p01.dat
|
|
|
Parsing LDraw |
Posted by: Max Murtazin - 2025-08-20, 18:04 - Forum: Help
- Replies (3)
|
 |
*sigh*
Okay, I've probably been it at it many times and probably even asked some questions on this topic before, but, alas, I'm at it again - trying to build an LDraw file format parser in C#. Why C#? Tl;dr: I need it for other stuff, and that stuff uses C#.
Well, the question itself: How does one even go around effectively parsing LDraw? This topic is a bit confusing to me due to the recursiveness (I guess that's what the word would be) of the format. My current approach is like this:
1. Read through all of the file, store all the faces in an array, store all the submodels in a separate array
2. Go through the submodel array, go to step 1 for each of them
3. Once the process is out of this recursive mess, "resolve" each submodel by applying the transform to it's triangles and adding them to the submodel's parent
4. Done, I guess?
It is very simple and doesn't account for, like, any meta or other stuff that could be important, but it should be enough for the start. I'm just not sure if this approach is good, or how it possibly could be improved
Also, I know I can read stuff like LDView source code, but I'm really bad at reading code made by other people, so it would probably take way more time than just asking it here
|
|
|
Filepath Backslash(\) or Forwardslash(/) |
Posted by: Hageta - 2025-08-18, 15:16 - Forum: Parts Authoring
- Replies (6)
|
 |
All the documentation I found used backslashes(\) for filepaths e.g "s\subpart.dat". But I could not find if forward slashes(/) are also allowed. LDView can use either without any errors, while LDPe does show an error. If either both or only backslashes are allowed it should be mentioned in the Documentation either under filename or a new section. I do ask this because in ConvertToLDraw I currently use forward slashes and I got this Bug report. I will change the filepaths if they are out of spec.
|
|
|
|