Artyom Lebedev

Results 73 comments of Artyom Lebedev

I will try to find some time and add a brief description of the above to the package readme.

Sounds like unsupported functionality. Currently it just loads and renders the whole document. Do you mean DXF `BLOCK` entity? What is your use case? What do you expect from the...

Ok, I see. Currently the viewer renders just model space content. What you want is called "Sheets" in Autodesk viewer, and probably corresponds to `LAYOUT` entity in DXF. Unfortunately it...

Oh, I did not notice they are represented in blocks as well. May be we do not need to parse layouts, just instantiate blocks which names starts with "*" (selecting...

Currently this is not supported. Need to build a separate bundle for that. This is actually a rare case for modern web-applications.

Hello, Do you know which language is it? Actually you need a font file (ttf) which contains glyphs for that language.

Seems it is from [CJK Unified Ideographs unicode block](https://en.wikipedia.org/wiki/CJK_Unified_Ideographs_(Unicode_block)). Font with these glyphs should be added here: https://github.com/vagran/dxf-viewer-example-src/blob/0b16e6fa5365b4896e0c03e26ed428fa27b4b91c/src/components/ViewerPage.vue#L19 https://github.com/vagran/dxf-viewer-example-src/blob/0b16e6fa5365b4896e0c03e26ed428fa27b4b91c/src/components/ViewerPage.vue#L68 I will add one in this example if I find one...

After a bit more of investigation I have these points: 1. I made one bug fix in font processing code. It might affect text rendering correctness for Unicode code points...

I will keep this issue open, until some kind of input file encoding handling is implemented. Proper processing of such files is not trivial with current parser implementation, but at...

> @vagran Have you looked at this yet? I took a look, and found it is quite a lot of changes from various areas. So it is still postponed for...