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 / 11122 (-40)
  LETGUI Update (1.6.1.0)
 
I just released a new version of LETGUI. Added support for stl2dat (now version 1.20). Added support for rectifier (now version 1.5). Added support for windz You can download like usually from (URL) you run into any trouble, please do not hesitate (...) (13 years ago, 23-Feb-11, to lugnet.cad.dev, lugnet.announce)  
 
  LETGUI Update (1.6.0.1)
 
I just released a new version of LETGUI. Added support for stl2dat (now version 1.19). Had to fix some bugs related to usage with drag'n drop and commandline. You can download like usually from (URL) you run into any trouble, please do not hesitate (...) (13 years ago, 9-Feb-11, to lugnet.cad.dev, lugnet.announce)
 
  LETGUI Update (1.6.0.0)
 
I just released the new version of LETGUI. Added support for stl2dat (current version). Added support for new tool Unificator. You can download like usually from (URL) you run into any trouble, please do not hesitate to contact me. cu mikeheide (13 years ago, 24-Jan-11, to lugnet.cad.dev, lugnet.announce)
 
  BrickCon LSculpt presentation
 
I have uploaded the slides I presented at BrickCon 2010. The slides go through a complex example which includes two different ways of creating 3D models, combining them together, and building the sculpture. (URL) resolution PDF and Powerpoint are (...) (14 years ago, 9-Oct-10, to lugnet.announce, lugnet.cad, lugnet.cad.dev, lugnet.events.nwbrickcon)
 
  Re: Announcing LSculpt 0.5.0
 
(...) On a side note, I have to say that this "DAVID laser scanner" sounds incredibly cool to me, so much so that I may need to look into acquiring it. Additionally, just five short years ago a 3-D scanner setup was apparently a near pipe-dream, (...) (14 years ago, 1-Oct-10, to lugnet.cad.dev, FTX)
 
  Re: Announcing LSculpt 0.5.0
 
(...) Thanks! I had already discovered DAVID through your website. I got a line laser from dealextreme too, but I didn't have much luck using the video on a digital camera instead of a webcam. I'll try more later! Sculptris looks very cool. It looks (...) (14 years ago, 29-Sep-10, to lugnet.cad.dev, FTX)
 
  Re: Announcing LSculpt 0.5.0
 
(...) Excellent! To the palette of tools you mention on LSculpt webpage, I'd like to add (URL) DAVID laser scanner> to build your own meshes. The free version is perfectly usable (but you'll need Meshlab to assemble the scans in a single mesh). A (...) (14 years ago, 29-Sep-10, to lugnet.cad.dev, FTX)
 
  Re: Announcing LSculpt 0.5.0
 
Hi Bram, Looks stunning. Downloading now! Now if I could find some more time for LEGO I could actually build the horse I sculpted with the earlier version of LSculpt. (URL) Jaco (14 years ago, 29-Sep-10, to lugnet.cad.dev, FTX)
 
  Announcing LSculpt 0.5.0
 
(URL) At Bricks by the Bay 2010 in Fremont, CA, I gave a (URL) presentation> on LSculpt, a program I wrote a few years ago to convert 3D models into Lego surfaces. After the presentation, (URL) Remi Gagne> offered to help me create a graphical (...) (14 years ago, 29-Sep-10, to lugnet.announce, lugnet.cad, lugnet.cad.dev, FTX) ! 
 
  Re: LDraw BFC Tool
 
(...) SNIP If I am right, this file would have error messages with L3P and DATHeader as the two lines are identical. So one line has to be deleted. cu mikeheide (14 years ago, 23-Aug-10, to lugnet.cad.dev, FTX)
 
  Re: LDraw BFC Tool
 
(...) If such things exist in BFC-certified parts, then they are obviously wrong, but won't necessarily be visible. It's obviously an error condition, so having the program detect it seems just to be a useful feature to me. I don't see why there (...) (14 years ago, 20-Jun-10, to lugnet.cad.dev)
 
  Re: LDraw BFC Tool
 
(...) Your guess is as good as mine. Hopefully Nils is reading and can answer it via me. Tim (14 years ago, 20-Jun-10, to lugnet.cad.dev)
 
  Re: LDraw BFC Tool
 
(...) Double sided part? I don't get it at all. Two identical references to a primitive, and the first is preceded by a BCF INVERTNEXT instruction. How will it look after being changed to single-sided? Has there been any discussions on this issue so (...) (14 years ago, 20-Jun-10, to lugnet.cad.dev)
 
  Re: LDraw BFC Tool
 
(...) Hi, I like to introduce version 1.7.0.5 Beta of the BFC-Tool (it is necessary to update the information on the downloads section on ldraw.org): New features: Changed required .NET Framework from 3.5 to Framework 2.0 Added "What's (...) (14 years ago, 20-Jun-10, to lugnet.cad.dev, FTX)
 
  Re: LDraw BFC Tool
 
(...) snip (...) Thanks! You have no idea how many times I've forgotten to attach attachments to emails! Same thing! Kevin (14 years ago, 17-Jun-10, to lugnet.cad.dev, FTX)
 
  Re: Bricksmith 2.4: Faster. Much Faster.
 
(...) <snip> (...) Wow, this is amazing. I had no idea you could do these kinds of things with shaders. Like Don I too think it's time for me to get a good book/document on using shaders in OpenGL. Thanks for the revelation. Roland (14 years ago, 16-Jun-10, to lugnet.cad.dev)
 
  Re: Bricksmith 2.4: Faster. Much Faster.
 
(...) Hoo...that takes me back! :-) Doing the second shader was a bit of a blast from the past, actually - it's over 10 years since I last wrote assembler in anger! Alex (14 years ago, 16-Jun-10, to lugnet.cad.dev)
 
  Re: Bricksmith 2.4: Faster. Much Faster.
 
(...) ... Wow, that is simple. It looks just like the description of the algorithm in the LDRAW specs. I haven't felt this old since manipulating the colormap for animation went outta style. :^) Thanks for sharing, Don (14 years ago, 16-Jun-10, to lugnet.cad.dev)
 
  Re: Bricksmith 2.4: Faster. Much Faster.
 
(...) Actually, it's even simpler! This is the code for the geometry-shader: #version 120 #extension GL_NV_geometry_shader4 : enable varying out vec4 gl_TexCoord[]; float determinant(mat2 m) { return m[0][0] * m[1][1] - m[0][1] * m[1][0]; } void (...) (14 years ago, 16-Jun-10, to lugnet.cad.dev)  
 
  Re: Bricksmith 2.4: Faster. Much Faster.
 
(...) Ah ha! Yet another reason to read that vertex-shader book. So, are you suggesting running this algorithm on the graphics card (with counters for the vertices instead counting pixels in the stencil buffer) or perhaps some other algorithm? (...) (14 years ago, 16-Jun-10, to lugnet.cad.dev, FTX)
 
  Re: Bricksmith 2.4: Faster. Much Faster.
 
(...) Interesting, but complicated IMO :-) Shaders offer a much easier implementation, and (I suspect) a faster one. Geometry-shaders for preference, but the algorithm can be implemented using vertex-shaders or even ARB vertex-programs to support (...) (14 years ago, 16-Jun-10, to lugnet.cad.dev, FTX)
 
  Re: Bricksmith 2.4: Faster. Much Faster.
 
(...) So finally this brings us to a technique that combines the predictive abilities of the conditional lines with the runtime advantages of the stencil and BFC algorithms. Think of the conditional line as a pair of triangles with a shared edge (...) (14 years ago, 16-Jun-10, to lugnet.cad.dev, FTX)
 
  Re: Bricksmith 2.4: Faster. Much Faster.
 
(...) And another thing... The BFC technique actually has an advantage over conditional lines because it works on the entire scene after it's been assembled. Whereas the conditional lines at the edges of the primitives are created in advance, and (...) (14 years ago, 16-Jun-10, to lugnet.cad.dev.mac, lugnet.cad.dev, FTX)
 
  Re: LDraw BFC Tool
 
(...) Stupid me Link on sourceforge: (URL) Tim (14 years ago, 16-Jun-10, to lugnet.cad.dev, FTX)
 
  Re: LDraw BFC Tool
 
(...) Cool! Where does one find an executable? Kevin (14 years ago, 15-Jun-10, to lugnet.cad.dev, FTX)
 
  LDraw BFC Tool
 
The time is up. There is no need to edit thousand lines of code anymore if you are in trouble with BFC-Certification! I have written a tool which requires .NET framework 3.5 and managed DirectX 9 to run. With this tool you are able to change wrong (...) (14 years ago, 15-Jun-10, to lugnet.cad.dev, lugnet.cad, FTX)
 
  Re: LDPattern
 
(...) No greater loss I guess. ;) (...) Guess I'll have to take a peep at Quad2dat to see how it works. I thought it was basically just the same approach as bmp2dat, with the difference it can handle more file formats and color depths. /Tore (14 years ago, 4-Jun-10, to lugnet.cad.dev)
 
  Re: LDPattern
 
(...) Even with Lugnet it's not always easy to know things exists: I had no idea LDraw Draw existed until today ;o) (...) Hopefully Il'dar will chime in, but I guess LDPattern will work like Quad2dat: once vertices are created, new points closer (...) (14 years ago, 4-Jun-10, to lugnet.cad.dev)
 
  Re: Possible (minor) contradiction in the specs
 
(...) If by "extension documents" you mean the (sub-)specifications referred to from the main 1.0.0 spec document (ie this page (URL) is no contradiction as the referenced specs were ratified BEFORE the main 1.0.0 spec (they had to be, otherwise the (...) (14 years ago, 4-Jun-10, to lugnet.cad.dev)
 
  Re: LDPattern + LDS, Proof of Concept  [DAT]
 
(...) ... and here's the output from the LDS Compiler v 0.61: 0 Tile 2 x 2 with Red L Pattern 0 Name: 3068bpL.dat 0 Author: Tore Eriksson 0 Unofficial Non-LEGO Part 0 BFC NOCERTIFY 1 16 0 0 0 1 0 0 0 1 0 0 0 1 s\3068bs01.dat 0 // Pattern created by (...) (14 years ago, 4-Jun-10, to lugnet.cad.dev)
 
  LDPattern + LDS, Proof of Concept  [DAT]
 
Here's a thought LDPattern project file in pure LDS format: ' 3068bpL.lds ' LDS Source File created by LDPattern 0 Tile 2 x 2 with Red L Pattern 0 Name: 3068bpL.dat 0 Author: Tore Eriksson 0 Unofficial Non-LEGO Part 0 BFC NOCERTIFY ' Default (...) (14 years ago, 4-Jun-10, to lugnet.cad.dev)
 
  Possible (minor) contradiction in the specs
 
Hi all, Not sure if this is the correct group for this, but I was wondering about a possible contradiction in the specs. I started working on a translation of my LD4DStudio renderer in C++ in means of a refresher course. While starting this up I (...) (14 years ago, 3-Jun-10, to lugnet.cad.dev)
 
  LDPattern  [DAT]
 
I just discovered the LDPattern project. (URL) to the ongoing delugnetization, I had no idea it existed until today. Anyway, here are my thoughts. In 1997, I made a DOS program called LDD (=LDraw Draw, to avoid confusion with TLC's Lego Digital (...) (14 years ago, 3-Jun-10, to lugnet.cad.dev)
 
  Re: What do LDraw dev people use for multiplatform development
 
(...) <snip> (...) Thanks for the insight, Actually the more 'local' feel to interfaces is the reason why I'm a bit more leaning towards wxWidgets at the moment, it uses native controls where possible on all platforms. But Qt is clearly more (...) (14 years ago, 2-Jun-10, to lugnet.cad.dev)
 
  Re: What do LDraw dev people use for multiplatform development
 
I know you've already mostly decided on a direction, but I figured I'd throw in my two cents. LDView takes a different tack for cross-platform support: all the back-end code is cross-platform C++, but the UI code is platform-specific. So my Windows (...) (14 years ago, 1-Jun-10, to lugnet.cad.dev)
 
  Re: What do LDraw dev people use for multiplatform development
 
(...) <snip> (...) Hi Roland, I use Qt (free) with static binding for LPub4. It works pretty well, and is well organized, but the learning curve is big (but not too steep). Kevin (14 years ago, 1-Jun-10, to lugnet.cad.dev)
 
  Re: What do LDraw dev people use for multiplatform development
 
In lugnet.cad.dev, Roland Melkert wrote: <snip> (...) Thanks for all the tips everybody, I've been playing around this weekend and decided to start writing something semi serious using C++ and ether wxWidgets or Qt. And for an IDE I decided on using (...) (14 years ago, 31-May-10, to lugnet.cad.dev)
 
  Re: What do LDraw dev people use for multiplatform development
 
(...) I'm not sure Lazarus is the way to go with FPC, there's too much of 'Delphi look-alike but never getting there' over Lazarus. But there are other ways of using FPC. (14 years ago, 28-May-10, to lugnet.cad.dev)
 
  Re: What do LDraw dev people use for multiplatform development
 
(...) As a Delphi programmer you might give Lazarus and freepascal a whirl. Since I also use Delphi, I tried it to make MPDWizard cross platform and it performed well. One sticking point in getting LDDP converted over is that JCL/JVCL isn't (...) (14 years ago, 28-May-10, to lugnet.cad.dev)
 
  Re: What do LDraw dev people use for multiplatform development
 
In lugnet.cad.dev, Remi Gagne wrote: <snip> (...) hmm, I thought LGPL mend you can only dynamically link to the library, I'll have to take another look it seems. Thanks. (...) <snip> (...) Yes, I've heard more people talking about Python like it's (...) (14 years ago, 27-May-10, to lugnet.cad.dev)


Next Page:  5 more | 10 more | 20 more | 40 more

Redisplay Messages:  All | Compact

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