|
List Info
Thread: DWG R2004 SUPPORT IN PYTHONCAD
|
|
| DWG R2004 SUPPORT IN PYTHONCAD |

|
2006-08-03 15:12:16 |
|
First of all, thanks for such a great software like PythonCAD.
I was looking for a reference about PythonCAD support of AC1018 (R2004) DWG file format, but I couldnt found it.
Is planned DWG 2004 support in PythonCAD?
Thanks in advance, and best regards!
-- Alvaro Zabala Ordóñez
Teléfono: 954939528 Plaza de España, sector II. SEVILLA
|
| DWG R2004 SUPPORT IN PYTHONCAD |

|
2006-08-03 20:25:29 |
On Thu, Aug 03, 2006 at 05:12:16PM +0200, Alvaro Zabala
wrote:
> First of all, thanks for such a great software like
PythonCAD.
>
> I was looking for a reference about PythonCAD support
of AC1018
> (R2004) DWG > file format, but I couldnt found it.
>
> Is planned DWG 2004 support in PythonCAD?
>
> Thanks in advance, and best regards!
Hi.
I've wanted to work on the code that handles the various
DWG formats,
and several months ago I received some documentation about
newer DWG
formats. Sadly I've not made any progress in coding up
routines to
handle newer DWG formats. The existing DWG reading code
needs cleaning
up, and then I need to start working on new code for the new
formats.
I'd like to be able to support the AC1018 format, but I
don't have a
timeline as to when that will happen. My work over the last
couple of
months has been concentrated on improving the GUI
responsiveness, fixing
bugs, and adding an occasional new feature. I regret that
still the code
needed for directly importing older DWG/DXF files is not
written as
well as the lack of code for newer version of these files.
Thanks for the kind words regarding PythonCAD.
Art Haas
--
Man once surrendering his reason, has no remaining guard
against absurdities
the most monstrous, and like a ship without rudder, is the
sport of every wind.
-Thomas Jefferson to James Smith, 1822
_______________________________________________
PythonCAD mailing list
PythonCAD python.org
htt
p://mail.python.org/mailman/listinfo/pythoncad
|
|
| DWG R2004 SUPPORT IN PYTHONCAD |

|
2006-08-03 21:17:28 |
# from Art Haas
# on Thursday 03 August 2006 01:25 pm:
>I'd like to be able to support the AC1018 format, but I
don't have a
>timeline as to when that will happen. My work over the
last couple of
>months has been concentrated on improving the GUI
responsiveness,
> fixing bugs, and adding an occasional new feature. I
regret that
> still the code needed for directly importing older
DWG/DXF files is
> not written as well as the lack of code for newer
version of these
> files.
We had a start on implementing DXF -> pythoncad
conversion in
vectorsection. The trouble with DWG is that it is as
convoluted as DXF
but also in a very bit-juggly binary format (e.g. some
values take 2-3
bits and various other not-8 widths.) The first issue makes
it
difficult because of the conceptual mapping of entities.
The second is
just really hard to code and debug.
It's difficult, but not impossible. If anyone is
interested in working
on it, I'm more than happy to help you get started. The
first goal for
vectorsection would be a standalone dxf<->pythoncad
conversion. From
there, we would handle dwg<->pythoncad (where the
conceptual mapping
stuff would be done and we would basically only need a
working DWG
class to drop-in as a replacement for the DXF stuff.) After
that,
pythoncad could use the standalone converters directly or
steal some
code.
--Eric
--
Hot dogs: just another condiment.
--Heart-attack Man
---------------------------------------------------
http://scratchcomputing.c
om
---------------------------------------------------
_______________________________________________
PythonCAD mailing list
PythonCAD python.org
htt
p://mail.python.org/mailman/listinfo/pythoncad
|
|
| DWG R2004 SUPPORT IN PYTHONCAD |

|
2006-08-04 07:10:26 |
|
and several months ago I received some documentation about newer DWG formats. Sadly I've not made any progress in coding up routines to
handle newer DWG formats.
Is this documentation public?
I was looking for it in OpenDesing (old OpenDWG) web, but the only public specification is DWG R1015.
Best regards.
-- Alvaro Zabala Ordóñez
Teléfono: 954939528 Plaza de España, sector II. SEVILLA
|
| DWG R2004 SUPPORT IN PYTHONCAD |

|
2006-09-25 19:41:24 |
Eric Wilhelm-2 wrote:
>
> # from Art Haas
> # on Thursday 03 August 2006 01:25 pm:
>
>>I'd like to be able to support the AC1018 format,
but I don't have a
>>timeline as to when that will happen. My work over
the last couple of
>>months has been concentrated on improving the GUI
responsiveness,
>> fixing bugs, and adding an occasional new feature.
I regret that
>> still the code needed for directly importing older
DWG/DXF files is
>> not written as well as the lack of code for newer
version of these
>> files.
>
> We had a start on implementing DXF -> pythoncad
conversion in
> vectorsection. The trouble with DWG is that it is as
convoluted as DXF
> but also in a very bit-juggly binary format (e.g. some
values take 2-3
> bits and various other not-8 widths.) The first issue
makes it
> difficult because of the conceptual mapping of
entities. The second is
> just really hard to code and debug.
>
> It's difficult, but not impossible. If anyone is
interested in working
> on it, I'm more than happy to help you get started.
The first goal for
> vectorsection would be a standalone
dxf<->pythoncad conversion. From
> there, we would handle dwg<->pythoncad (where the
conceptual mapping
> stuff would be done and we would basically only need a
working DWG
> class to drop-in as a replacement for the DXF stuff.)
After that,
> pythoncad could use the standalone converters directly
or steal some
> code.
>
> hi Eric,
>
> i am the one interested in helping with the
implementing DXF -> pythoncad
> conversion in
> vectorsection.
>
> i am an absolute begginer in python, i used to program
in pascal many
> years ago and i belive i can still do something.
>
> i will need some time to get used with python and the
pythoncad projetc,
> but i have the time.
>
> I'm not sure if i am in the mailing list, am i? please
let me know.
>
> best regards
>
> Marco Alicera
>
>
> --Eric
> --
> Hot dogs: just another condiment.
> --Heart-attack Man
> ---------------------------------------------------
> http://scratchcomputing.c
om
> ---------------------------------------------------
> _______________________________________________
> PythonCAD mailing list
> PythonCAD python.org
> htt
p://mail.python.org/mailman/listinfo/pythoncad
>
>
--
View this message in context: http://www.nabble.com/DWG-R2004-SUPP
ORT-IN-PYTHONCAD-tf2046343.html#a6493844
Sent from the Python - pythoncad mailing list archive at
Nabble.com.
_______________________________________________
PythonCAD mailing list
PythonCAD python.org
htt
p://mail.python.org/mailman/listinfo/pythoncad
|
|
| DWG R2004 SUPPORT IN PYTHONCAD |

|
2006-09-25 19:41:24 |
Eric Wilhelm-2 wrote:
>
> # from Art Haas
> # on Thursday 03 August 2006 01:25 pm:
>
>>I'd like to be able to support the AC1018 format,
but I don't have a
>>timeline as to when that will happen. My work over
the last couple of
>>months has been concentrated on improving the GUI
responsiveness,
>> fixing bugs, and adding an occasional new feature.
I regret that
>> still the code needed for directly importing older
DWG/DXF files is
>> not written as well as the lack of code for newer
version of these
>> files.
>
> We had a start on implementing DXF -> pythoncad
conversion in
> vectorsection. The trouble with DWG is that it is as
convoluted as DXF
> but also in a very bit-juggly binary format (e.g. some
values take 2-3
> bits and various other not-8 widths.) The first issue
makes it
> difficult because of the conceptual mapping of
entities. The second is
> just really hard to code and debug.
>
> It's difficult, but not impossible. If anyone is
interested in working
> on it, I'm more than happy to help you get started.
The first goal for
> vectorsection would be a standalone
dxf<->pythoncad conversion. From
> there, we would handle dwg<->pythoncad (where the
conceptual mapping
> stuff would be done and we would basically only need a
working DWG
> class to drop-in as a replacement for the DXF stuff.)
After that,
> pythoncad could use the standalone converters directly
or steal some
> code.
>
> hi Eric,
>
> i am the one interested in helping with the
implementing DXF -> pythoncad
> conversion in
> vectorsection.
>
> i am an absolute begginer in python, i used to program
in pascal many
> years ago and i belive i can still do something.
>
> i will need some time to get used with python and the
pythoncad projetc,
> but i have the time.
>
> I'm not sure if i am in the mailing list, am i? please
let me know.
>
> best regards
>
> Marco Alicera
>
>
> --Eric
> --
> Hot dogs: just another condiment.
> --Heart-attack Man
> ---------------------------------------------------
> http://scratchcomputing.c
om
> ---------------------------------------------------
> _______________________________________________
> PythonCAD mailing list
> PythonCAD python.org
> htt
p://mail.python.org/mailman/listinfo/pythoncad
>
>
--
View this message in context: http://www.nabble.com/DWG-R2004-SUPP
ORT-IN-PYTHONCAD-tf2046343.html#a6493844
Sent from the Python - pythoncad mailing list archive at
Nabble.com.
_______________________________________________
PythonCAD mailing list
PythonCAD python.org
htt
p://mail.python.org/mailman/listinfo/pythoncad
|
|
[1-6]
|
|