Planix is a computer-aided design program that aims to use the LibreDWG library to read and write dwg files.
- Read dwg files and show its information y a friendly data interface called data explorer.
Here it is possible to see the data of the drawing in table format. There is also a selection menu by type of entity. It is possible to see the basic data such as layer, line type, color, weight and also some other especific data related to the type of entity, for example in the text entity it is possible to see its value, in the lines and polylines its length etc.
Icon | Alias | Name | Description |
---|---|---|---|
mh | area | Meassure area | |
mj | ruler | Measure distance | |
mk | protractos | Measure angle |
Icon | Alias | Name | Description |
---|---|---|---|
zc | Pan | Displacement of sight | |
zx | Zoome | View fit to all entities | |
z | Zoomw | View window |
Icon | Alias | Name | Description |
---|---|---|---|
lk | Layers |
LibreDWG - free implementation of the DWG file format, is a free C library to read and write DWG files. This program is part of the GNU project, released under the aegis of GNU. It is licensed under the terms of the GNU General Public License version 3 (or at you option any later version). https://www.gnu.org/software/libredwg/
#!/bin/bash
# Script para instalar LibreDWG en el sistema
#===============================================================================
# LibDWG
git clone git://git.sv.gnu.org/libredwg.git
cd libredwg
sh autogen.sh
./configure --enable-trace
make
sudo make install
make check
cd ..
Gambas is a free development environment and a full powerful development platform based on a Basic interpreter with object extensions. http://gambas.sourceforge.net/en/main.html