To LUGNET HomepageTo LUGNET News HomepageTo LUGNET Guide Homepage
 Help on Searching
 
Post new message to lugnet.cad.devOpen lugnet.cad.dev in your NNTP NewsreaderTo LUGNET News Traffic PageSign In (Members)
 CAD / Development / 6897 (-20)
  Re: A comprehensive LDraw object model
 
(...) Could you give us an example? By looking at what you've written, I don't understand if one needs an ending tag, or not, to complete the '0 DETAIL' command. Where in the text of the file would this go? How would it look? Thanks a lot. Much (...) (23 years ago, 11-Feb-02, to lugnet.cad.dev)
 
  Re: A comprehensive LDraw object model
 
(...) Well again BFC is only useful for culling surfaces that face away from you. It doesn't really do anything for faces that face you but are blocked by other faces. When I talked about top, left, right, etc, I was envisioning some system by which (...) (23 years ago, 11-Feb-02, to lugnet.cad.dev)
 
  Re: A comprehensive LDraw object model
 
"Kyle McDonald" <kmcdonald@bigfoot.com> skrev i meddelandet news:3C671582.801040...oot.com... (...) If the parts are BFC compliant, there's no need to tag for 'top', 'left' etc. as this information is already there in the surface normal (with much (...) (23 years ago, 11-Feb-02, to lugnet.cad.dev)
 
  Re: BrickDraw3D development announcement
 
(...) Heh heh. Fixed this bug last night. err = glCheckError(); // no error! glBegin(GL_LINES); err = glCheckError(); // dies! In my zeal to add error checking everywhere to find the real error, I put glCheckError inside a lot of glBegin/glEnd (...) (23 years ago, 11-Feb-02, to lugnet.cad.dev)
 
  Re: Category for segments parts
 
(...) Currently, the approach we take for figuring the location of part files is this: all files a "model builder" might need to use directly belong in /parts/. This includes all composite parts, atomic parts, shortcuts, and segments. Other files go (...) (23 years ago, 11-Feb-02, to lugnet.cad.dev)
 
  Re: A comprehensive LDraw object model
 
(...) A couple of different approaches to this have been discussed before. I think the most generic solution was to implement a 0 DETAIL <level> meta-command, that would identify the detail-level of the following lines. A 0 detail level indicates (...) (23 years ago, 11-Feb-02, to lugnet.cad.dev)
 
  Re: A comprehensive LDraw object model
 
"Sproaticus" <jsproat@io.com> schrieb im Newsbeitrag news:GrBy72.EJI@lugnet.com... (...) Conclusion: The LineType-classes are wrapper classes for the lines in the dat files. Simple in- and output methods are included, also simple transforming (...) (23 years ago, 11-Feb-02, to lugnet.cad.dev)
 
  Re: need help w/ name (set #4817)
 
(...) So, unless someone else chimes in, it looks like these will be the names: 970p4b Minifig Hips with Leather Belt/Straps Pattern 971p4b Minifig Leg Right with Leather Belt/Straps Pattern 972p4b Minifig Leg Left with Leather Belt/Straps Pattern (...) (23 years ago, 11-Feb-02, to lugnet.cad.dev)
 
  Minifig Hair Female
 
Since the last official parts update, I have relished the ability to put hair on my male minifigures. I humbly request that if anyone would be willing/able, that he would make some Minifig Hair Female. Best regards to all, and thanks. --Ryan (23 years ago, 11-Feb-02, to lugnet.cad.dev)
 
  Re: A comprehensive LDraw object model
 
(...) Yes, What you're describing does sound like BFC to me. As someone else (travis I think?) said, BFC is a useful optimiziation for reducing the number of surfaces that need to be drawn. But it's not the same thing I was talking about. BFC (...) (23 years ago, 11-Feb-02, to lugnet.cad.dev)
 
  Re: A comprehensive LDraw object model
 
(...) Ok. Up until now I've been under the impression we were trying to come up with a pure interface definition, independent of any particular language, platform, or implementation. When I asked if they weren't all abstract, I was envisioning (...) (23 years ago, 10-Feb-02, to lugnet.cad.dev)
 
  Re: A comprehensive LDraw object model
 
(...) I can definately see the benefits of a standard library interface. Even an implementation might have a lot of uses. I just think that you will get the best design for the interface, if you forget about how you or anyone implemented it in the (...) (23 years ago, 10-Feb-02, to lugnet.cad.dev)
 
  Re: A comprehensive LDraw object model
 
(...) Backface culling (BFC) is what you are describing, but it isn't what Kyle was asking for :-). In traditional realtime 3D rendering, polygons only have one side. The back side is literally non-existent. It doesn't get drawn at all. This is (...) (23 years ago, 10-Feb-02, to lugnet.cad.dev)
 
  Re: A comprehensive LDraw object model
 
(...) Well, while I haven't tried it, I'm fairly sure that my implementation of MPD-handling in LDView would happily load an MPD file as a subfile of another MPD file or a dat file. :-) --Travis Cobbs (tcobbs@REMOVE.halibut.com) (23 years ago, 10-Feb-02, to lugnet.cad.dev)
 
  Re: A comprehensive LDraw object model
 
(...) The way I designed my stuff is that the code in the linetype classes manage the objects they contain -- mostly just allocation, serialization and stringification of a matrix or a list of vectors. However, any rendering or parsing behavior is (...) (23 years ago, 10-Feb-02, to lugnet.cad.dev)
 
  Re: A comprehensive LDraw object model
 
(...) Well, this raises the point: what ideal is the LDraw format aiming for? I don't think it's really going anywhere; any real change to the format would break compatability with the legacy LDRAW.EXE. I'm proposing a class library for the existing (...) (23 years ago, 10-Feb-02, to lugnet.cad.dev)
 
  Re: Category for segments parts
 
Carsten wrote: CS> .... CS> For example it would be nice to have ML-Cad known that a special pat is a CS> segment part and when you drop it in the model window it woul ask right away CS> where to set start and end-point and calculate the segment (...) (23 years ago, 10-Feb-02, to lugnet.cad.dev)
 
  Re: A comprehensive LDraw object model
 
(...) Standard libraries/classes for reading, writing and processing LDraw and MPD files is certainly a good idea, but I am not certain rendering functions should be a part of such a library although it is an obvious extension. Jacob (23 years ago, 10-Feb-02, to lugnet.cad.dev)
 
  Category for segments parts
 
Hello! Past few days when i was working up parts who never have been reviewed before in parts tracker I noticed a lot of segment parts for Lego Technic. Basically these parts consists of a small segment or link to make a wire or tube of it (...) (23 years ago, 10-Feb-02, to lugnet.cad.dev)
 
  Re: A comprehensive LDraw object model
 
"Sproaticus" <jsproat@io.com> schrieb im Newsbeitrag news:GrA7CA.24y@lugnet.com... (...) Shall this lines be only container classes or shall they have the working code? If they have working code, they are heavily depending on the target system (...) (23 years ago, 10-Feb-02, to lugnet.cad.dev)


Next Page:  5 more | 10 more | 20 more

Redisplay Messages:  All | Compact

©2005 LUGNET. All rights reserved. - hosted by steinbruch.info GbR