Activity for IVCon-TL 3D scene conversion tool

  • Tomasz Lis Tomasz Lis modified ticket #4

    The code is not compilable because of fatal errors

  • mefistotelis committed [b55bcb]

    Added Ms Visual Studio project files.

  • Jaroslav Fojtik Jaroslav Fojtik created ticket #5

    Conversion failure

  • Jaroslav Fojtik Jaroslav Fojtik posted a comment on ticket #4

    Please use & commit 4 files I have sent you and feel free to close this report. 1>Linking... 1>Generating code 1>Finished generating code 1>Embedding manifest... 1>Build log was saved at "file://c:\src\ivcon\Release\BuildLog.htm" 1>ivcon - 0 error(s), 413 warning(s) ========== Build: 1 succeeded, 0 failed, 0 up-to-date, 0 skipped ==========

  • Tomasz Lis Tomasz Lis posted a comment on ticket #4

    Actually the main advantage of this tool is its simplicity. You just got me revisit this code after 10 years, and still it didn't made me much trouble to look at it and help you. For compiling on Windows, I'd recommend gcc from either msys2 or mingw packages. The Ubuntu system integrated into Win10 will probably work as well.

  • Jaroslav Fojtik Jaroslav Fojtik posted a comment on ticket #4

    I has been participaded on several free project. But believe me, it is very hard to get oriented in code with thousands lines of code. It needs extensive support. The first step must be to getthis code to get compiled anyway. I can help with this step.

  • mefistotelis committed [af9beb]

    Updated the way version information is stored.

  • Tomasz Lis Tomasz Lis posted a comment on ticket #3

    I commited a fix for you. Don't be affraid to edit the code yourself - you may add any missing wrl features you need to iv_read().

  • mefistotelis committed [6f31ef]

    IV/WRL: Improved errors while reading, added fields.

  • mefistotelis committed [2102eb]

    Added test script to check whether IVCon works.

  • Jaroslav Fojtik Jaroslav Fojtik modified a comment on ticket #3

    Yes, I confirm that your last build does not crash, it is good. But on the oposite the conversion result is just an empty file :(. It is program failure to convert the vrml.

  • Jaroslav Fojtik Jaroslav Fojtik modified a comment on ticket #3

    Yes, I confirm that your last build does not crash, it is good. But on the oposite the conversion result is just an emptyfile :(. It is program failure to convert the vrml.

  • Jaroslav Fojtik Jaroslav Fojtik posted a comment on ticket #3

    Yes, I confirm that your last build does not crash, it is good. Bot on the oposite the conversion result is just an emptyfile :(. It is program failure to convert the vrml.

  • mefistotelis committed [6021e2]

    Got rid of more compiler warnings.

  • IVCon-TL 3D scene conversion tool IVCon-TL 3D scene conversion tool released /ivcon-tl/IVCon 1.18/ivcon_3d_conversion_rel_1_18_win64_incl_shared.zip

  • Jaroslav Fojtik Jaroslav Fojtik posted a comment on ticket #3

    Too bad! Now I see data, but this is 64 bit executeble :(. I do not have 64 bit OS at home. Please rename yout executable to ivcon_3d_conversion_rel_1_18_win64_incl_shared.zip It is not WIN32 application. I could test it at work, but true ivcon_3d_conversion_rel_1_18_win32_incl_shared.zip would be appreciated.

  • IVCon-TL 3D scene conversion tool IVCon-TL 3D scene conversion tool released /ivcon-tl/IVCon 1.18/ivcon_3d_conversion_rel_1_18_win32_incl_shared.zip

  • Tomasz Lis Tomasz Lis posted a comment on ticket #3

    "This file will be ready for download shortly." Looks like SourceForge backend needs more time.

  • Jaroslav Fojtik Jaroslav Fojtik posted a comment on ticket #3

    Nice, but there is some defect and I do not see the file: ivcon_3d_conversion_rel_1_18_src.zip 2014-12-03 1.0 MB 2 ivcon_3d_conversion_rel_1_18_win32.zip 2014-12-03 286.6 kB 20 ivcon_3d_conversion_rel_1_18_lin-x86.zip 2014-12-03 172.9 kB 2 Totals: 4 Items 3.3 MB 24 May be that you have marked this file as private or that it can take several hours when it will be published.

  • Tomasz Lis Tomasz Lis posted a comment on ticket #3

    Added 'ivcon_3d_conversion_rel_1_18_win32_incl_shared.zip' to releases.

  • Tomasz Lis Tomasz Lis posted a comment on ticket #4

    I fixed some of the issues for you; if you need any further changes, feel free to clone the project and apply any fixes you need.

  • mefistotelis committed [d16225]

    Fixed some compilation warnings and errors.

  • mefistotelis committed [cdf75a]

    Re-formatted all the sources to unify coding style.

  • mefistotelis committed [974dff]

    Updated Eclipse project file to use proper coding style.

  • mefistotelis committed [ffeefe]

    Fixes for recent compilers.

  • Jaroslav Fojtik Jaroslav Fojtik posted a comment on ticket #3

    I will try to recompile. I have installed Visual Studio 8 and not GCC. Even when so, could you publish your DLLs? Please put it here. It is an easiest way. Everybody will fall into this pitfall. I have: libgcc_s_dw2-1.dll form 13.8.2016; size 112142 - no version info in resources provided libstdc++-6.dll from 12.10.2016; size 879630 - no version info in resources provided

  • Jaroslav Fojtik Jaroslav Fojtik posted a comment on ticket #4

    Please fix "return" problem first. I do not know whether you intend to return something or not. I can fix "strcasecmp" problem with parameter -Dstrcasecmp=stricmp The isnan problem could be (hot)fixed this way: #ifdef _MSC_VER #include <float.h> #ifndef isnan #define isnan(x) _isnan(x) #endif #else //This one should be defined in MATH.H, but it is not (I don't know why) #ifndef isnan #define isnan(x) (sizeof (x) == sizeof (float) ? __isnanf (x) \ : sizeof (x) == sizeof (double) ? __isnan (x) \ :...

  • Jaroslav Fojtik Jaroslav Fojtik created ticket #4

    The code is not compilable because of fatal errors

  • Tomasz Lis Tomasz Lis posted a comment on ticket #3

    Thanks for the report. Looks like it is the cause of gcc libraries, as the conversion works properly on my local build. You could compile your own binary to get rid of the issue.

  • mefistotelis committed [8a5956]

    Fixes for recent compilers.

  • Jaroslav Fojtik Jaroslav Fojtik posted a comment on ticket #3

    May be that this is a problem of DLL libraries. You should bundle nonstandard DLLs: libgcc_s_dw2-1.dll libstdc++-6.dll together with your executable. I have got some libraries from Internet, but they could be newer or older.

  • Jaroslav Fojtik Jaroslav Fojtik created ticket #3

    IVCon in immediatelly crashing

  • IVCon-TL 3D scene conversion tool IVCon-TL 3D scene conversion tool released /ivcon-tl/IVCon 1.18/ivcon_3d_conversion_rel_1_18_win32.zip

  • IVCon-TL 3D scene conversion tool IVCon-TL 3D scene conversion tool released /ivcon-tl/IVCon 1.18/ivcon_3d_conversion_rel_1_18_src.zip

  • IVCon-TL 3D scene conversion tool IVCon-TL 3D scene conversion tool released /ivcon-tl/IVCon 1.18/ivcon_3d_conversion_rel_1_18_lin-x86.zip

  • IVCon-TL 3D scene conversion tool IVCon-TL 3D scene conversion tool released /ivcon_3d_conversion_rel_1_18_lin-x86.zip

  • IVCon-TL 3D scene conversion tool IVCon-TL 3D scene conversion tool released /ivcon_3d_conversion_rel_1_18_win32.zip

  • mefistotelis committed [42a220]

    Prepared for 1.18 release.

  • mefistotelis committed [e0bd9b]

    Fixes to allow Linux compilation.

  • mefistotelis committed [138ae8]

    Updated coding style in core files.

  • mefistotelis committed [c6fa21]

    Started preparations for Eclipse based developm...

  • mefistotelis committed [f01c23]

    Fixed core, IV and 3DS. Added empty meshes remo...

  • mefistotelis committed [8932f2]

    Updated ASE, WRL. Added SWM. Fixed face area re...

  • mefistotelis committed [05712c]

    Fixed BYU, DXF, ASC, ASE. Unified file reading ...

  • mefistotelis committed [864538]

    Modified core to allow new features. Added SWV....

  • mefistotelis committed [5af1b0]

    Rewritten INTERACT code. Added reducing face or...

  • John Burkardt committed [63bba7]

    Original version from jburkardt's website.

  • mefistotelis committed [bbb541]

    Fixed HRC, TEC, POV, VLA. Made shapes belong to...

  • mefistotelis committed [2cb6e3]

    Added comments for format files. Unified file I...

  • mefistotelis committed [2b4e6f]

    Finished adjusting for Eclipse and new gcc vers...

  • mefistotelis committed [8343b5]

    Added reducing unique mesh names.

  • mefistotelis committed [57fb8c]

    Fixed SMF format support. Added tech info.

  • mefistotelis committed [a3d14f]

    Updated website.

1
MongoDB Logo MongoDB