<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:thr="http://purl.org/syndication/thread/1.0">
	
	<id>tag:librecad.169.s1.nabble.com,2006:forum-5706790</id>
	<title>Nabble - New user - Introduce yourself</title>
	<updated>2026-04-03T13:49:54Z</updated>
	<link rel="self" type="application/atom+xml" href="http://librecad.169.s1.nabble.com/New-user-Introduce-yourself-f5706790.xml" />
	<link rel="alternate" type="text/html" href="https://forum.librecad.org/New-user-Introduce-yourself-f5706790.html" />
	<subtitle type="html">&lt;h4&gt;If you are new to the forum &amp;nbsp;- feel free to introduce yourself and maybe tell us what you intend to use LibreCAD for!&lt;/h4&gt;</subtitle>
	
	<entry>
		<id>tag:librecad.169.s1.nabble.com,2006:post-5729132</id>
		<title>Re: Hello -- and how do I start LibreCAD?</title>
		<published>2026-04-01T07:48:13Z</published>
		<updated>2026-04-01T07:48:13Z</updated>
		<author>
			<name>River</name>
		</author>
		<content type="html">
			Okay. &amp;nbsp;I see now I have to download the installer separate from the .zip file. &amp;nbsp;So far so good.

	
	
	
			
		</content>
		<link rel="alternate" type="text/html" href="https://forum.librecad.org/Hello-and-how-do-I-start-LibreCAD-tp5729131p5729132.html" />
		<thr:in-reply-to ref="tag:librecad.169.s1.nabble.com,2006:post-5729131"/>
	</entry>
	<entry>
		<id>tag:librecad.169.s1.nabble.com,2006:post-5729131</id>
		<title>Hello -- and how do I start LibreCAD?</title>
		<published>2026-04-01T06:12:24Z</published>
		<updated>2026-04-01T06:12:24Z</updated>
		<author>
			<name>River</name>
		</author>
		<content type="html">
			Good Morning,
&lt;br/&gt;&lt;br/&gt;I just downloaded the Windows version of LibreCAD this morning. &amp;nbsp;That all seemed to go as expected. &amp;nbsp;I unpacked the .zip file, and that went fine.
&lt;br/&gt;&lt;br/&gt;BUT I cannot find a .exe file to initiate the program. &amp;nbsp;What am I doing wrong? &amp;nbsp;I feel like a novice (and maybe I am).
&lt;br/&gt;&lt;br/&gt;Anyway, I look forward to using LibreCAD. &amp;nbsp;I have multiple projects needing design pretty much immediately.
&lt;br/&gt;&lt;br/&gt;Thank you for your help.

	
	
	
			
		</content>
		<link rel="alternate" type="text/html" href="https://forum.librecad.org/Hello-and-how-do-I-start-LibreCAD-tp5729131.html" />
		
	</entry>
	<entry>
		<id>tag:librecad.169.s1.nabble.com,2006:post-5729124</id>
		<title>Re: Hello, thanks, and question</title>
		<published>2026-03-31T22:02:01Z</published>
		<updated>2026-03-31T22:02:01Z</updated>
		<author>
			<name>dxli</name>
		</author>
		<content type="html">
			Jozef,
&lt;br/&gt;&lt;br/&gt;for special purposes, you can also ask AI to create code.
&lt;br/&gt;&lt;br/&gt;I tried Google AI mode:
&lt;br/&gt;&lt;br/&gt;&lt;i&gt;generate a python program to list all geometry parameters of all entities in a DXF file, and output them in a CSV file&lt;/i&gt;&lt;br/&gt;&lt;br/&gt;This is the python program it generated:
&lt;br/&gt;&lt;br/&gt;&lt;pre&gt;
pip install ezdxf


import ezdxf
import csv

def export_dxf_to_csv(dxf_path, csv_path):
    try:
        # Load the DXF file
        doc = ezdxf.readfile(dxf_path)
    except IOError:
        print(f&amp;quot;Error: Cannot open file {dxf_path}&amp;quot;)
        return
    except ezdxf.DXFStructureError:
        print(f&amp;quot;Error: Invalid or corrupted DXF file: {dxf_path}&amp;quot;)
        return

    # Access the modelspace where geometry entities are stored
    msp = doc.modelspace()
    
    # Prepare CSV file for writing
    with open(csv_path, mode='w', newline='', encoding='utf-8') as f:
        writer = csv.writer(f)
        # Define header: Handle (unique ID), Type (LINE, CIRCLE, etc.), Layer, Parameter, Value
        writer.writerow(['Handle', 'Entity_Type', 'Layer', 'Parameter', 'Value'])
        
        for entity in msp:
            handle = entity.dxf.handle
            etype = entity.dxftype()
            layer = entity.dxf.layer
            
            # Extract all available DXF attributes for the current entity
            # This includes geometry (start, end, center, radius) and metadata
            attribs = entity.dxfattribs()
            
            for param_name, value in attribs.items():
                writer.writerow([handle, etype, layer, param_name, str(value)])

    print(f&amp;quot;Data successfully exported to: {csv_path}&amp;quot;)

# Example Usage
if __name__ == &amp;quot;__main__&amp;quot;:
    # Replace with your actual file names
    input_file = &amp;quot;drawing.dxf&amp;quot;
    output_file = &amp;quot;geometry_parameters.csv&amp;quot;
    export_dxf_to_csv(input_file, output_file)
&lt;/pre&gt;&lt;br/&gt;&lt;blockquote class=&quot;quote dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;Jozef wrote&lt;/div&gt;
&lt;div class=&quot;quote-message&quot;&gt;Thanks. &amp;nbsp;I really only need each entitie's coordinates for what I thought I wanted to do. &amp;nbsp;I would want to put them into a csv file. &amp;nbsp;I know the dxf format has other things like color and line thickness and so on. &amp;nbsp;I could parse around all that.
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;


	
	
	
			
		</content>
		<link rel="alternate" type="text/html" href="https://forum.librecad.org/Hello-thanks-and-question-tp5729049p5729124.html" />
		<thr:in-reply-to ref="tag:librecad.169.s1.nabble.com,2006:post-5729112"/>
	</entry>
	<entry>
		<id>tag:librecad.169.s1.nabble.com,2006:post-5729112</id>
		<title>Re: Hello, thanks, and question</title>
		<published>2026-03-31T07:34:15Z</published>
		<updated>2026-03-31T07:34:15Z</updated>
		<author>
			<name>Jozef</name>
		</author>
		<content type="html">
			Thanks. &amp;nbsp;I really only need each entitie's coordinates for what I thought I wanted to do. &amp;nbsp;I would want to put them into a csv file. &amp;nbsp;I know the dxf format has other things like color and line thickness and so on. &amp;nbsp;I could parse around all that.

	
	
	
			
		</content>
		<link rel="alternate" type="text/html" href="https://forum.librecad.org/Hello-thanks-and-question-tp5729049p5729112.html" />
		<thr:in-reply-to ref="tag:librecad.169.s1.nabble.com,2006:post-5729054"/>
	</entry>
	<entry>
		<id>tag:librecad.169.s1.nabble.com,2006:post-5729054</id>
		<title>Re: Hello, thanks, and question</title>
		<published>2026-03-25T13:55:05Z</published>
		<updated>2026-03-25T13:55:05Z</updated>
		<author>
			<name>sand1024</name>
		</author>
		<content type="html">
			well, for sure technically it's possible - after all, we have something similar in 2.2.2-alpha (&lt;a href=&quot;https://github.com/LibreCAD/LibreCAD/releases/tag/2.2.2_alpha-latest&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://github.com/LibreCAD/LibreCAD/releases/tag/2.2.2_alpha-latest&lt;/a&gt;) in Entity Info widget. 
&lt;br/&gt;&lt;br/&gt;As for mass selection and export - no, so far there is no such a functionality at the moment - mainly because it's not clear which exact format is needed and, basically, how that output will be handled further (usually such exports are useful for further automated processing). 
&lt;br/&gt;&lt;br/&gt;Actually, it's not a technically complex things to implement as we have good basis internally, and so it might be that I'll add this feature in the future if this will be really needed - at least, I've noted this. 
&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;

	
	
	
			
		</content>
		<link rel="alternate" type="text/html" href="https://forum.librecad.org/Hello-thanks-and-question-tp5729049p5729054.html" />
		<thr:in-reply-to ref="tag:librecad.169.s1.nabble.com,2006:post-5729051"/>
	</entry>
	<entry>
		<id>tag:librecad.169.s1.nabble.com,2006:post-5729051</id>
		<title>Re: Hello, thanks, and question</title>
		<published>2026-03-25T11:35:22Z</published>
		<updated>2026-03-25T11:35:22Z</updated>
		<author>
			<name>perepujal</name>
		</author>
		<content type="html">
			Hi, with the &amp;quot;List entities&amp;quot; plugin you could see some of the info you ask for:
&lt;br/&gt;&lt;br/&gt;Click on Plugins-&amp;gt;List entities, select the entities you want the info, then hit Enter
&lt;br/&gt;&lt;br/&gt;alternatively, first select anything you want info, then click on Plugins-&amp;gt;List entities, then hit Enter
&lt;br/&gt;&lt;br/&gt;Then copy/paste the output to a file, this is not automated, and maybe there are info you don't need, see for example the ouput of a circle:
&lt;br/&gt;&lt;br/&gt;n 4: CIRCLE
&lt;br/&gt;&amp;nbsp; Layer: 0
&lt;br/&gt;&amp;nbsp; Color: BYLAYER
&lt;br/&gt;&amp;nbsp; Line type: BYLAYER
&lt;br/&gt;&amp;nbsp; Line thickness: BYLAYER
&lt;br/&gt;&amp;nbsp; ID: 1002
&lt;br/&gt;&amp;nbsp; &amp;nbsp; center point: X=20.0000 Y=110.2500
&lt;br/&gt;&amp;nbsp; &amp;nbsp; radius: 23.9505
&lt;br/&gt;&amp;nbsp; &amp;nbsp; circumference: 150.4852
&lt;br/&gt;&amp;nbsp; &amp;nbsp; area: 1802.0961
&lt;br/&gt;&lt;br/&gt;HTH
&lt;br/&gt;Pere

	
	
	
			
		</content>
		<link rel="alternate" type="text/html" href="https://forum.librecad.org/Hello-thanks-and-question-tp5729049p5729051.html" />
		<thr:in-reply-to ref="tag:librecad.169.s1.nabble.com,2006:post-5729049"/>
	</entry>
	<entry>
		<id>tag:librecad.169.s1.nabble.com,2006:post-5729050</id>
		<title>Re: Hello, thanks, and question</title>
		<published>2026-03-25T07:45:36Z</published>
		<updated>2026-03-25T07:45:36Z</updated>
		<author>
			<name>sand1024</name>
		</author>
		<content type="html">
			well, different entities are described by set of different coordinates... i.e. - point - just one coordinate. line - 2 of them. Circle - coordinate of center and radius... and so on. 
&lt;br/&gt;&lt;br/&gt;So I'm not sure I understand how coordinates of &amp;quot;all entities&amp;quot; may be collected in some uniform way and sent to the file. Do you have some specific format in mind? 

	
	
	
			
		</content>
		<link rel="alternate" type="text/html" href="https://forum.librecad.org/Hello-thanks-and-question-tp5729049p5729050.html" />
		<thr:in-reply-to ref="tag:librecad.169.s1.nabble.com,2006:post-5729049"/>
	</entry>
	<entry>
		<id>tag:librecad.169.s1.nabble.com,2006:post-5729049</id>
		<title>Hello, thanks, and question</title>
		<published>2026-03-25T05:49:51Z</published>
		<updated>2026-03-25T05:49:51Z</updated>
		<author>
			<name>Jozef</name>
		</author>
		<content type="html">
			Hello,
&lt;br/&gt;I appreciate LibreCad and all the work that has gone into it. &amp;nbsp;I have mainly used it as a tool to verify the dxf output from another drawing package. &amp;nbsp;So in a way it is my reference and very important to avoid mistakes when sending my files to the shop.
&lt;br/&gt;I am working now on an idea for converting a 2d drawing into Gcode for engraving. &amp;nbsp;I know there are packages that claim to do this but I'm yet to find a good one that can output efficient codes. &amp;nbsp;I would like to explore taking the coordinates for the various entities to use. &amp;nbsp;I know that I can get entity coordinates for one thing at a time using the plugin. &amp;nbsp;Is there a way I can get all the entities at once and send them to a file? &amp;nbsp;I know I'm asking a lot, but thought that since LibreCAD already reads the dxf file and must parse all the data, maybe it is available somehow? &amp;nbsp;My apologies if it seems a stupid question.
&lt;br/&gt;thanks,
&lt;br/&gt;Jozef

	
	
	
			
		</content>
		<link rel="alternate" type="text/html" href="https://forum.librecad.org/Hello-thanks-and-question-tp5729049.html" />
		
	</entry>
	<entry>
		<id>tag:librecad.169.s1.nabble.com,2006:post-5729047</id>
		<title>New user</title>
		<published>2026-03-24T20:37:31Z</published>
		<updated>2026-03-24T20:37:31Z</updated>
		<author>
			<name>Albaton</name>
		</author>
		<content type="html">
			New to Librecad. &amp;nbsp;Running on a Dell with Linux Mint 22.1 Xia base: Ubuntu 24.04 noble. &amp;nbsp;Printing on a Brother MFC J6955W tabloid sheets (my current problem). &amp;nbsp;Have 
&lt;br/&gt;Version: v2.2.1.3-12-gd1ca469c9
&lt;br/&gt;Compiler: GNU GCC 11.4.0
&lt;br/&gt;Compiled on: Mar &amp;nbsp;3 2026
&lt;br/&gt;Qt Version: 5.15.2
&lt;br/&gt;Boost Version: 1.74.0
&lt;br/&gt;System: Linux Mint 22.1
&lt;br/&gt;And 
&lt;br/&gt;Version: 2.2.1.3
&lt;br/&gt;Compiler: GNU GCC 15.2.0
&lt;br/&gt;Compiled on: Nov 11 2011
&lt;br/&gt;Qt Version: 5.15.18
&lt;br/&gt;Boost Version: 1.80.0
&lt;br/&gt;System: KDE Flatpak runtime
&lt;br/&gt;&lt;br/&gt;&amp;nbsp;Current project is house plans set for construction this summer. &amp;nbsp;Going at it rather hammer and tongs, but have my points on a notepad. &amp;nbsp;I can see more uses for it, as I learn my way around. &amp;nbsp;Shop drawings for a cabinet maker, and shop projects of my own, mostly metal work.
&lt;br/&gt;

	
	
	
			
		</content>
		<link rel="alternate" type="text/html" href="https://forum.librecad.org/New-user-tp5729047.html" />
		
	</entry>
	<entry>
		<id>tag:librecad.169.s1.nabble.com,2006:post-5729037</id>
		<title>Re: Hello to the community!</title>
		<published>2026-03-22T20:21:10Z</published>
		<updated>2026-03-22T20:21:10Z</updated>
		<author>
			<name>dxli</name>
		</author>
		<content type="html">
			You can use (from menu): Tools &amp;gt; Info , or Tools &amp;gt; Dimensions
&lt;br/&gt;&lt;br/&gt;I found a short video by Mufasu CAD on measuring:
&lt;br/&gt;&lt;br/&gt;&lt;a href=&quot;https://www.youtube.com/watch?v=1GIQbdNOtk0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://www.youtube.com/watch?v=1GIQbdNOtk0&lt;/a&gt;&lt;br/&gt;&lt;br/&gt;There's also another way:
&lt;br/&gt;&lt;br/&gt;Draw a line between those two points, and select it (by clicking on). The total length of selected curves is also displayed as &amp;quot;Selected Total Length&amp;quot;. This method is good, if the distance interested is by arc distance, or manhattan distance, or even more complex ones.
&lt;br/&gt;&lt;br/&gt;&lt;blockquote class=&quot;quote dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;elfoxyt0 wrote&lt;/div&gt;
&lt;div class=&quot;quote-message&quot;&gt;Hello to all,
&lt;br/&gt;New user to LibreCAD. I'm a software engineer with strong experience in Photoshop but very little CAD background.
&lt;br/&gt;My ambition with LibreCAD is to produce dxf files for a laser printer. Printouts are fairly simple.
&lt;br/&gt;I hope to get some help. I already tried the app on Windows 11 but am totally stuck to even measure the distance between 2 points. The wiki or user manual provides no help as it describes items I do not see on the app, such as command line.
&lt;br/&gt;I'll come back on the forum with specific questions.
&lt;br/&gt;Thank's to all.
&lt;br/&gt;Regards.
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;


	
	
	
			
		</content>
		<link rel="alternate" type="text/html" href="https://forum.librecad.org/Hello-to-the-community-tp5729027p5729037.html" />
		<thr:in-reply-to ref="tag:librecad.169.s1.nabble.com,2006:post-5729027"/>
	</entry>
	<entry>
		<id>tag:librecad.169.s1.nabble.com,2006:post-5729036</id>
		<title>Re: New User</title>
		<published>2026-03-22T15:30:24Z</published>
		<updated>2026-03-22T15:30:24Z</updated>
		<author>
			<name>dxli</name>
		</author>
		<content type="html">
			That zip file contains the source code
&lt;br/&gt;&lt;br/&gt;You probably want to choose one of the binary packages
&lt;br/&gt;&lt;br/&gt;Win64 exe for windows 
&lt;br/&gt;Dmg for Mac( arm64 for ones since 2020)
&lt;br/&gt;App images for Linux
&lt;br/&gt;Etc.
&lt;br/&gt;&lt;br/&gt;&lt;blockquote class=&quot;quote dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;David R Weist wrote&lt;/div&gt;
&lt;div class=&quot;quote-message&quot;&gt;Hello, 
&lt;br/&gt;&lt;br/&gt;I happened on librecad as a frree and effective replacement for AutoCAD which is too expensive for me to justify. I have the 2.2.0.1 version and I've been using it to create a view of my property for documentation purposes. However, I've experienced a few &amp;quot;bugs&amp;quot;. I now want to upgrade the program, however, I can only git an upgrade from github (the source forge option no longer appears on the web page). I've downloaded the LibreCAD-2.2.1-latest.zip file, but have no idea what to do with it. Can anyone tell me how to install the update from this file?
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;


	
	
	
			
		</content>
		<link rel="alternate" type="text/html" href="https://forum.librecad.org/New-User-tp5729033p5729036.html" />
		<thr:in-reply-to ref="tag:librecad.169.s1.nabble.com,2006:post-5729033"/>
	</entry>
	<entry>
		<id>tag:librecad.169.s1.nabble.com,2006:post-5729033</id>
		<title>New User</title>
		<published>2026-03-22T11:37:09Z</published>
		<updated>2026-03-22T11:37:09Z</updated>
		<author>
			<name>David R Weist</name>
		</author>
		<content type="html">
			Hello, 
&lt;br/&gt;&lt;br/&gt;I happened on librecad as a frree and effective replacement for AutoCAD which is too expensive for me to justify. I have the 2.2.0.1 version and I've been using it to create a view of my property for documentation purposes. However, I've experienced a few &amp;quot;bugs&amp;quot;. I now want to upgrade the program, however, I can only git an upgrade from github (the source forge option no longer appears on the web page). I've downloaded the LibreCAD-2.2.1-latest.zip file, but have no idea what to do with it. Can anyone tell me how to install the update from this file?
&lt;br/&gt;

	
	
	
			
		</content>
		<link rel="alternate" type="text/html" href="https://forum.librecad.org/New-User-tp5729033.html" />
		
	</entry>
	<entry>
		<id>tag:librecad.169.s1.nabble.com,2006:post-5729032</id>
		<title>Re: Hello to the community!</title>
		<published>2026-03-22T11:01:02Z</published>
		<updated>2026-03-22T11:01:02Z</updated>
		<author>
			<name>sand1024</name>
		</author>
		<content type="html">
			well, please mention the version of LC you currently use. 
&lt;br/&gt;&lt;br/&gt;As for the command line - it is supported by Cmd widget. In main menu there should be an item like &amp;quot;Widgets&amp;quot; - in sub-menu of it there are several checkable items with widget names, please check that one is enabled. 
&lt;br/&gt;&lt;br/&gt;Alternatively - right click on any toolbar or status bar, in popup menu you'll see that item too. 
&lt;br/&gt;&lt;br/&gt;Also, that widget may be part of tabbed widget somewhere on right side of your screen.... 

	
	
	
			
		</content>
		<link rel="alternate" type="text/html" href="https://forum.librecad.org/Hello-to-the-community-tp5729027p5729032.html" />
		<thr:in-reply-to ref="tag:librecad.169.s1.nabble.com,2006:post-5729027"/>
	</entry>
	<entry>
		<id>tag:librecad.169.s1.nabble.com,2006:post-5729027</id>
		<title>Hello to the community!</title>
		<published>2026-03-21T14:37:38Z</published>
		<updated>2026-03-21T14:37:38Z</updated>
		<author>
			<name>elfoxyt0</name>
		</author>
		<content type="html">
			Hello to all,
&lt;br/&gt;New user to LibreCAD. I'm a software engineer with strong experience in Photoshop but very little CAD background.
&lt;br/&gt;My ambition with LibreCAD is to produce dxf files for a laser printer. Printouts are fairly simple.
&lt;br/&gt;I hope to get some help. I already tried the app on Windows 11 but am totally stuck to even measure the distance between 2 points. The wiki or user manual provides no help as it describes items I do not see on the app, such as command line.
&lt;br/&gt;I'll come back on the forum with specific questions.
&lt;br/&gt;Thank's to all.
&lt;br/&gt;Regards.

	
	
	
			
		</content>
		<link rel="alternate" type="text/html" href="https://forum.librecad.org/Hello-to-the-community-tp5729027.html" />
		
	</entry>
	<entry>
		<id>tag:librecad.169.s1.nabble.com,2006:post-5728992</id>
		<title>New user.</title>
		<published>2026-03-15T12:47:41Z</published>
		<updated>2026-03-15T12:47:41Z</updated>
		<author>
			<name>klunker</name>
		</author>
		<content type="html">
			Hello all, I'm a new user.
&lt;br/&gt;Went to Linux as I got tired of Microsoft windows for various reasons.
&lt;br/&gt;Was using MasterCam on windows 10.
&lt;br/&gt;&lt;br/&gt;MasterCam, at least my version wouldn't work on Linux/
&lt;br/&gt;So I jumped into LibreCad.
&lt;br/&gt;&lt;br/&gt;I use CAD for designing woodworking projects.
&lt;br/&gt;Basically to generate drawings to help me make my projects.
&lt;br/&gt;&lt;br/&gt;I have LOTS of years of CAD experience.
&lt;br/&gt;Started on Computervision back in the late &amp;quot;70's or early '80's.
&lt;br/&gt;Can't remember exactly when.
&lt;br/&gt;Just the fact that it was over 4 decades ago gives you an idea on old I am.
&lt;br/&gt;&lt;br/&gt;I've used CADDS 3 and 4 from computervision, a McDonnell Douglas system, CATIA, CADAM, Solid Edge and MasterCam.
&lt;br/&gt;Maybe I've even forgotten a few.
&lt;br/&gt;Its been a while.
&lt;br/&gt;&lt;br/&gt;Vast majority has been 2D drawing to allow manufacturing of Tooling, Injection Molds and Stamping Dies.
&lt;br/&gt;&lt;br/&gt;These drawings then would be used in a CAM software to program various machines to make tooling.
&lt;br/&gt;&lt;br/&gt;I Find that I get my mind so used to one system that starting another is the hardest part.
&lt;br/&gt;Some functions are different and the whole process of drawing is different.
&lt;br/&gt;&lt;br/&gt;So I'm sure I'll be asking some really dumb questions till I get used to LibreCad, so thanks in advance to all.
&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;

	
	
	
			
		</content>
		<link rel="alternate" type="text/html" href="https://forum.librecad.org/New-user-tp5728992.html" />
		
	</entry>
	<entry>
		<id>tag:librecad.169.s1.nabble.com,2006:post-5728981</id>
		<title>Re: setting the correct scale on an imperial architectural drawing</title>
		<published>2026-03-13T12:15:28Z</published>
		<updated>2026-03-13T12:15:28Z</updated>
		<author>
			<name>dellus</name>
		</author>
		<content type="html">
			Basicly you have to draw your drawing template with borders and title block in 1:1 scale first and then scale the whole thing up 48 times. There is no paper space method in LibreCAD. Then you can make the actual drawing in real world values within it. For printing the drawing is scaled down again to 1:48 in Print Preview mode.
&lt;br/&gt;&lt;br/&gt;I once have made a template for letter size. I now have made a template for A1 out of it.
&lt;br/&gt;It may not answer all your questions but may give you some clues:
&lt;br/&gt;&lt;br/&gt;&lt;a href=&quot;https://forum.librecad.org/file/n5728981/arch_inch_1_48_letter.dxf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;arch_inch_1_48_letter.dxf&lt;/a&gt;&lt;br/&gt;&lt;a href=&quot;https://forum.librecad.org/file/n5728981/arch_inch_1_48_a1.dxf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;arch_inch_1_48_a1.dxf&lt;/a&gt;&amp;nbsp;

	
	
	
			
		</content>
		<link rel="alternate" type="text/html" href="https://forum.librecad.org/setting-the-correct-scale-on-an-imperial-architectural-drawing-tp5728978p5728981.html" />
		<thr:in-reply-to ref="tag:librecad.169.s1.nabble.com,2006:post-5728978"/>
	</entry>
	<entry>
		<id>tag:librecad.169.s1.nabble.com,2006:post-5728978</id>
		<title>setting the correct scale on an imperial architectural drawing</title>
		<published>2026-03-13T10:05:04Z</published>
		<updated>2026-03-13T10:05:04Z</updated>
		<author>
			<name>Stu</name>
		</author>
		<content type="html">
			Good morning all,
&lt;br/&gt;&lt;br/&gt;Here's the intro:
&lt;br/&gt;My name is Stu Rhodes. &amp;nbsp;I'm a retired Tech Ed teacher and Red Seal Carpenter. &amp;nbsp;I used to do quite a bit of residential architecture as a side job. &amp;nbsp;Initially all my work was on the board with conventional drafting tools. &amp;nbsp;Later I became quite proficient at using MiniCAD (for a Mac) to execute my designs/drawings. &amp;nbsp;Fast forward about 20 years and I've found myself roped into helping some friends create drawings for several buildings on a remote recreational property. &amp;nbsp;I no longer have access to the now outdated MiniCAD so so thought I would give LibreCAD a try.
&lt;br/&gt;&lt;br/&gt;Here's the dilemma:
&lt;br/&gt;I'm pretty old school (as are the friends I am helping) so I prefer to draw/work in Imperial (feet, inches, fractions of an inch) and use the standard residential scale for these drawings of 1/4&amp;quot; represents 1'-0&amp;quot; (or 12&amp;quot;) or 1:48. &amp;nbsp;I need to create/present the drawings on a standard A1 page format. &amp;nbsp;Past practice for me in MiniCAD or AutoCAD has been to open the A1 page, create a border and title block, then establish the desired scale of 1:48, set the grid at the desired snap spacing (usually 1/8&amp;quot; or 1/16&amp;quot;) , establish all the likely layers, save as a template for all the pages to be drawn, then get to work creating the actual drawing of the house.
&lt;br/&gt;&lt;br/&gt;I've managed to open the A1 page and draw the title block. &amp;nbsp;As per usual, I created the title block with slightly more than a half inch of space outside on the top and bottom to leave 22&amp;quot;, less an inch for the title block leaves 21&amp;quot; of drawing space in height. &amp;nbsp; Then I allowed half an inch of space on the right edge and a little over an inch on the left to allow for binding, thus leaving a drawing space of 31 1/5&amp;quot; in width. &amp;nbsp;The problem arises when trying to set the scale! These drawing space dimensions should equate to 84 feet in height by 126 feet in width. &amp;nbsp;Try as I might, I am unable to adjust the scale to get this amount of distance. &amp;nbsp;The maximum height and width I can get within the borders is approximately 45'-9&amp;quot; feet high by 67' wide. &amp;nbsp;It is critically important to establish the correct scale on the drawing so it fits within the allocated boundaries set by the title block and so it prints at the appropriate scale so building trades practitioners can perform approximate scaling of dimensions directly off the printed drawings using a simple tape measure (with 1/4&amp;quot; increments) or a scale ruler with 1/4&amp;quot;: 1'-0&amp;quot; designation.
&lt;br/&gt;&lt;br/&gt;I've been stuck in this rut for a couple of days now! &amp;nbsp;Please help! &amp;nbsp;Many thanks in advance! :)
&lt;br/&gt;&amp;nbsp;

	
	
	
			
		</content>
		<link rel="alternate" type="text/html" href="https://forum.librecad.org/setting-the-correct-scale-on-an-imperial-architectural-drawing-tp5728978.html" />
		
	</entry>
	<entry>
		<id>tag:librecad.169.s1.nabble.com,2006:post-5728871</id>
		<title>Re: New User with a question about trimmiing</title>
		<published>2026-02-26T06:51:37Z</published>
		<updated>2026-02-26T06:51:37Z</updated>
		<author>
			<name>dxli</name>
		</author>
		<content type="html">
			hi Vonzipper:
&lt;br/&gt;&lt;br/&gt;I found a basic trimming video tutorial:
&lt;br/&gt;&lt;br/&gt;&lt;a href=&quot;https://www.youtube.com/shorts/ieabm6DhzN4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://www.youtube.com/shorts/ieabm6DhzN4&lt;/a&gt;&lt;br/&gt;&lt;br/&gt;The steps are like:
&lt;br/&gt;Trim (One): Trims one entity up to a limiting entity.
&lt;br/&gt;1. Select Modify -&amp;gt; Trim (or tr in command line).
&lt;br/&gt;2. Click the line that acts as the boundary (the cutting edge).
&lt;br/&gt;3. Click the part of the line you want to keep.
&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;Trimming a circle works similarly: after selecting a limiting curve/line, click on the portion of the circle to preserve, so the portion on the other side will be trimmed.
&lt;br/&gt;&lt;br/&gt;Trimming two works mostly, but is not as robust as trimming one.
&lt;br/&gt;&lt;br/&gt;Feel free to ask for further questions.
&lt;br/&gt;&lt;blockquote class=&quot;quote dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;Vonurzipper wrote&lt;/div&gt;
&lt;div class=&quot;quote-message&quot;&gt;I am used to Autocad Ltite and have been trying to draw the wrench in one of the tutorials. &amp;nbsp;I cannot seem to get trim or trim two work on removing parts of circles. &amp;nbsp;I have even tried Divide. &amp;nbsp;Any suggestions. &amp;nbsp;Maybe this subject has been covered before on the forum. &amp;nbsp;Is there a way to look it up?
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;


	
	
	
			
		</content>
		<link rel="alternate" type="text/html" href="https://forum.librecad.org/New-User-with-a-question-about-trimmiing-tp5728869p5728871.html" />
		<thr:in-reply-to ref="tag:librecad.169.s1.nabble.com,2006:post-5728869"/>
	</entry>
	<entry>
		<id>tag:librecad.169.s1.nabble.com,2006:post-5728870</id>
		<title>Re: New User with a question about trimmiing</title>
		<published>2026-02-26T05:48:41Z</published>
		<updated>2026-02-26T05:48:41Z</updated>
		<author>
			<name>Vonzipper</name>
		</author>
		<content type="html">
			Since it says introduce myself, I am a 75 year old retired from 47 years of Civil Engineering and 5+ years as a golf pro. &amp;nbsp;I was a beekeeper for a while too. &amp;nbsp;I live in Jacksonville Florida.

	
	
	
			
		</content>
		<link rel="alternate" type="text/html" href="https://forum.librecad.org/New-User-with-a-question-about-trimmiing-tp5728869p5728870.html" />
		<thr:in-reply-to ref="tag:librecad.169.s1.nabble.com,2006:post-5728869"/>
	</entry>
	<entry>
		<id>tag:librecad.169.s1.nabble.com,2006:post-5728869</id>
		<title>New User with a question about trimmiing</title>
		<published>2026-02-26T05:44:06Z</published>
		<updated>2026-02-26T05:44:06Z</updated>
		<author>
			<name>Vonzipper</name>
		</author>
		<content type="html">
			I am used to Autocad Lite and have been trying to draw the wrench in one of the tutorials. &amp;nbsp;I cannot seem to get trim or trim two to work on removing parts of circles. &amp;nbsp;I have even tried Divide. &amp;nbsp;Any suggestions. &amp;nbsp;Maybe this subject has been covered before on the forum. &amp;nbsp;Is there a way to look it up?

	
	
	
			
		</content>
		<link rel="alternate" type="text/html" href="https://forum.librecad.org/New-User-with-a-question-about-trimmiing-tp5728869.html" />
		
	</entry>
	<entry>
		<id>tag:librecad.169.s1.nabble.com,2006:post-5728862</id>
		<title>Previous MicroStation user woes</title>
		<published>2026-02-25T14:24:28Z</published>
		<updated>2026-02-25T14:24:28Z</updated>
		<author>
			<name>Lesley</name>
		</author>
		<content type="html">
			Hi everyone - new user from Scotland here. Have used LibreOffice for many years and now that I'm no longer working needed access to a CAD programme. During my working life I used MicroStation for many years, and latterly Revit for 3D CAD. Anyone who has ever used MicroStation will know how totally different it is from AutoCAD which LibreCAD seems to be based around. It's going to be a steep learning curve - already struggling with things I used to do with my eyes closed.....brace yourselves for lots of queries!

	
	
	
			
		</content>
		<link rel="alternate" type="text/html" href="https://forum.librecad.org/Previous-MicroStation-user-woes-tp5728862.html" />
		
	</entry>
	<entry>
		<id>tag:librecad.169.s1.nabble.com,2006:post-5728444</id>
		<title>Re: New User</title>
		<published>2025-12-30T01:39:13Z</published>
		<updated>2025-12-30T01:39:13Z</updated>
		<author>
			<name>sand1024</name>
		</author>
		<content type="html">
			Well, the support of DWG in LibreCAD is quite limited. So the more promising way in your scenario will be as following: 
&lt;br/&gt;&lt;br/&gt;1) existing dwg are exported as dxf (either using AutoCAD or via some online services - there are tons of them nowadays, like &lt;a href=&quot;https://cloudconvert.com/dwg-to-dxf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://cloudconvert.com/dwg-to-dxf&lt;/a&gt;&amp;nbsp;or &lt;a href=&quot;https://cad.online-convert.com/convert/dwg-to-dxf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://cad.online-convert.com/convert/dwg-to-dxf&lt;/a&gt;&amp;nbsp;or any other suitable, you may simply find them with google). 
&lt;br/&gt;2) these dxf may be opened by LibreCAD
&lt;br/&gt;3) you make necessary modification there
&lt;br/&gt;4) save/export to pdf. 
&lt;br/&gt;&lt;br/&gt;

	
	
	
			
		</content>
		<link rel="alternate" type="text/html" href="https://forum.librecad.org/New-User-tp5728442p5728444.html" />
		<thr:in-reply-to ref="tag:librecad.169.s1.nabble.com,2006:post-5728442"/>
	</entry>
	<entry>
		<id>tag:librecad.169.s1.nabble.com,2006:post-5728442</id>
		<title>New User</title>
		<published>2025-12-29T16:28:14Z</published>
		<updated>2025-12-29T16:28:14Z</updated>
		<author>
			<name>jshannon57</name>
		</author>
		<content type="html">
			I did use AutoCAD, more than 15 years ago gave it up as the cost per use made no sense. &amp;nbsp;Have tried to retire, I may be failing. &amp;nbsp;Many of my contacts, architects, engineers, and designers, have been asking for some help in some of the concrete construction details and I will need to import their DWG files and work out the details and could export in PDF. &amp;nbsp;Is their another format to export format that AutoCAD would read and simplyfi the transision?

	
	
	
			
		</content>
		<link rel="alternate" type="text/html" href="https://forum.librecad.org/New-User-tp5728442.html" />
		
	</entry>
	<entry>
		<id>tag:librecad.169.s1.nabble.com,2006:post-5728356</id>
		<title>Re: Introduction</title>
		<published>2025-11-24T03:44:25Z</published>
		<updated>2025-11-24T03:44:25Z</updated>
		<author>
			<name>eengebruiker</name>
		</author>
		<content type="html">
			@dxli. Thanks for the reply. There's an idea in the following but you don't have to reply.
&lt;br/&gt;&lt;br/&gt;I am suddenly asking myself if AutoCAD has a complete script language; if all functionality can be accessed by it. Maybe it has limits.
&lt;br/&gt;I allways used AutoLISP and was quite good at it actually. Sometimes i wrote a piece of script with AutoLISP, to be picked up automatically by AutoCAD when restarted (to get something going at the start that could not be done with AutoLISP). Apart form this we made limited use of script in AutoCAD.
&lt;br/&gt;&lt;br/&gt;This is why i am so interested in Clojure, which is a much better Lisp. Find it amazing.
&lt;br/&gt;&lt;br/&gt;AI (chat GPT in my case) does amazing things. I thought Clojure was an obscure language but when I asked for a function for some task, it produced it flawless.
&lt;br/&gt;Now I know there are quite a lot of users.
&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;[Start Idea]
&lt;br/&gt;&lt;br/&gt;Simple example in AutoLISP: (setq p1 '(0 0) p2 '(100 100)) (command &amp;quot;LINE&amp;quot; p1 p2 &amp;quot;&amp;quot;)
&lt;br/&gt;&lt;br/&gt;This draws via the command system. This way ellipses, arcs, inserts, polylines, etc., could be drawn. It went fairly quick but to speed up you could write directly into the database using the DXF-codes. The entities to be forced into the database looked like '((0 . &amp;quot;LINE&amp;quot;) (10 . 0.0 0.0) (11 . 100.0 100.0) (8 . &amp;quot;GEO1&amp;quot;) . . .)
&lt;br/&gt;(other codes where mandatory to get it accepted.)
&lt;br/&gt;&lt;br/&gt;I was thinking . . . &amp;nbsp;since drawings in LibreCAD are saved as DXF, will it become possible to do something similar with python?
&lt;br/&gt;&lt;br/&gt;[End Idea]
&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;We could go on about this (scripting and programming) for a long time but it would be a waste of time for you. I would benefit mostly i guess.
&lt;br/&gt;&lt;br/&gt;Thanks again.

	
	
	
			
		</content>
		<link rel="alternate" type="text/html" href="https://forum.librecad.org/Introduction-tp5728328p5728356.html" />
		<thr:in-reply-to ref="tag:librecad.169.s1.nabble.com,2006:post-5728351"/>
	</entry>
	<entry>
		<id>tag:librecad.169.s1.nabble.com,2006:post-5728351</id>
		<title>Re: Introduction</title>
		<published>2025-11-24T00:57:16Z</published>
		<updated>2025-11-24T00:57:16Z</updated>
		<author>
			<name>dxli</name>
		</author>
		<content type="html">
			Getting python support is minimum effort towards a Turing complete scripting framework. As a bonus, lots of computation libraries can be used in python.
&lt;br/&gt;&lt;br/&gt;Yes, python is intended for advanced users.
&lt;br/&gt;&lt;br/&gt;There's another possibility, get AI support. For example, user only describe the objective:
&lt;br/&gt;&lt;br/&gt;&lt;i&gt;draw a parabola tangent to x-axis and the line y=x;
&lt;br/&gt;fillet at tangential points for r=0.1;&lt;/i&gt;&lt;br/&gt;&lt;br/&gt;the AI will find out the parabola and fillet parameters, so the commands and computational being delegated to an external AI.
&lt;br/&gt;&lt;br/&gt;The current command system is not complete, but not too bad, after years of user experience.
&lt;br/&gt;&lt;br/&gt;&lt;blockquote class=&quot;quote dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;eengebruiker wrote&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;@dxli. I approach you as a developer here. Is that correct?
&lt;br/&gt;&lt;br/&gt;You wrote &amp;quot;Commands are not well designed, and that explains why they are not well documented. &amp;nbsp;What we have are a collection of quick fixes for specific feature requests.&amp;quot;
&lt;br/&gt;&lt;br/&gt;This looks pretty dangerous to me. How to get things straight once it has gone too far in the wrong direction?
&lt;br/&gt;My idea: Feature request must be considered very carefully and hesitant to avoid future problems. All users will benefit from that attitude, including the requesters.
&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;You also wrote that Python support is due to arrive, Doesn't that ask for development skills of the user?
&lt;br/&gt;(I barely know any python, so maybe a bit unfair to put it this way.)
&lt;br/&gt;Do you present this as a substitute for scripting?
&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;If the intention really is to have a script language to run in LibreCAD, then all commands (all things avaliable to the user) should be present in that language. And should be kept level with every improvement or addition to LibreCAD. (Must be eveluated in every development plan.)
&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;You can read the above as the following request from me. &amp;quot;A solid and complete script language in LibreCAD that is kept stable and complete during all developments.&amp;quot; I think it is very usefull to have this. Maybe it is necessary to start all over for once, with a new initiative.
&lt;br/&gt;&lt;br/&gt;I think it is important to have this done, before serious developments in paperspace, 2 1/2D or solidmodelling are considered (I read something about this).
&lt;br/&gt;&lt;br/&gt;Just an opinion.
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;


	
	
	
			
		</content>
		<link rel="alternate" type="text/html" href="https://forum.librecad.org/Introduction-tp5728328p5728351.html" />
		<thr:in-reply-to ref="tag:librecad.169.s1.nabble.com,2006:post-5728350"/>
	</entry>
	<entry>
		<id>tag:librecad.169.s1.nabble.com,2006:post-5728350</id>
		<title>Re: Introduction</title>
		<published>2025-11-23T08:59:00Z</published>
		<updated>2025-11-23T08:59:00Z</updated>
		<author>
			<name>eengebruiker</name>
		</author>
		<content type="html">
			@dxli. I approach you as a developer here. Is that correct?
&lt;br/&gt;&lt;br/&gt;You wrote &amp;quot;Commands are not well designed, and that explains why they are not well documented. &amp;nbsp;What we have are a collection of quick fixes for specific feature requests.&amp;quot;
&lt;br/&gt;&lt;br/&gt;This looks pretty dangerous to me. How to get things straight once it has gone too far in the wrong direction?
&lt;br/&gt;My idea: Feature request must be considered very carefully and hesitant to avoid future problems. All users will benefit from that attitude, including the requesters.
&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;You also wrote that Python support is due to arrive, Doesn't that ask for development skills of the user?
&lt;br/&gt;(I barely know any python, so maybe a bit unfair to put it this way.)
&lt;br/&gt;Do you present this as a substitute for scripting?
&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;If the intention really is to have a script language to run in LibreCAD, then all commands (all things avaliable to the user) should be present in that language. And should be kept level with every improvement or addition to LibreCAD. (Must be eveluated in every development plan.)
&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;You can read the above as the following request from me. &amp;quot;A solid and complete script language in LibreCAD that is kept stable and complete during all developments.&amp;quot; I think it is very usefull to have this. Maybe it is necessary to start all over for once, with a new initiative.
&lt;br/&gt;&lt;br/&gt;I think it is important to have this done, before serious developments in paperspace, 2 1/2D or solidmodelling are considered (I read something about this).
&lt;br/&gt;&lt;br/&gt;Just an opinion.

	
	
	
			
		</content>
		<link rel="alternate" type="text/html" href="https://forum.librecad.org/Introduction-tp5728328p5728350.html" />
		<thr:in-reply-to ref="tag:librecad.169.s1.nabble.com,2006:post-5728336"/>
	</entry>
	<entry>
		<id>tag:librecad.169.s1.nabble.com,2006:post-5728337</id>
		<title>Re: Introduction</title>
		<published>2025-11-21T15:50:37Z</published>
		<updated>2025-11-21T15:50:37Z</updated>
		<author>
			<name>flywire</name>
		</author>
		<content type="html">
			&lt;a href=&quot;https://forum.librecad.org/Self-Documenting-Tools-tp5725976p5728021.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://forum.librecad.org/Self-Documenting-Tools-tp5725976p5728021.html&lt;/a&gt;&amp;nbsp;and thereabouts seems to resonate with your comments. Are you prepared to sift through the code in the repository for details?

	
	
	
			
		</content>
		<link rel="alternate" type="text/html" href="https://forum.librecad.org/Introduction-tp5728328p5728337.html" />
		<thr:in-reply-to ref="tag:librecad.169.s1.nabble.com,2006:post-5728328"/>
	</entry>
	<entry>
		<id>tag:librecad.169.s1.nabble.com,2006:post-5728336</id>
		<title>Re: Introduction</title>
		<published>2025-11-21T15:42:35Z</published>
		<updated>2025-11-21T16:19:12Z</updated>
		<author>
			<name>flywire</name>
		</author>
		<content type="html">
			&lt;blockquote class=&quot;quote dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;dxli wrote&lt;/div&gt;
&lt;div class=&quot;quote-message&quot;&gt;Good news is that initial Python support is expected &amp;nbsp;soon.
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
Are you referring to &lt;a href=&quot;https://forum.librecad.org/Python-LibreDcl-first-test-td5725735.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://forum.librecad.org/Python-LibreDcl-first-test-td5725735.html&lt;/a&gt;?
&lt;br/&gt;&lt;br/&gt;I'd be much happier if I could run some [any] version of it in Windows. An Alpha release would be really good. I also think it would very much benefit from &lt;a href=&quot;https://forum.librecad.org/Self-Documenting-Tools-tp5725976p5728043.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;JSON-Based Configuration&lt;/a&gt;.
&lt;br/&gt;

	
	
	
			
		</content>
		<link rel="alternate" type="text/html" href="https://forum.librecad.org/Introduction-tp5728328p5728336.html" />
		<thr:in-reply-to ref="tag:librecad.169.s1.nabble.com,2006:post-5728333"/>
	</entry>
	<entry>
		<id>tag:librecad.169.s1.nabble.com,2006:post-5728333</id>
		<title>Re: Introduction</title>
		<published>2025-11-21T12:41:44Z</published>
		<updated>2025-11-21T12:41:44Z</updated>
		<author>
			<name>dxli</name>
		</author>
		<content type="html">
			Commands are not well designed, and that explains why they are not well documented. &amp;nbsp;What we have are a collection of quick fixes for specific feature requests.
&lt;br/&gt;&lt;br/&gt;Good news is that initial Python support is expected &amp;nbsp;soon.
&lt;br/&gt;&lt;blockquote class=&quot;quote dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;eengebruiker wrote&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;Hello, I am a new user. In the past I have used AutoCAD quite a lot, including AutoLisp programming (which I really liked to do). Of course there was also the script in AutoCAD.
&lt;br/&gt;&lt;br/&gt;Now I am trying to work with LibreCAD (personal use), and was immediately drawn to command files which I can create in other applications, for example Google Sheet.
&lt;br/&gt;&lt;br/&gt;In a way it is similar but the details are bugging me. I will post some question in the appropriate groups on this forum.
&lt;br/&gt;BTW, developers are reading on this forum as well. The documentation seems pretty basic. Some sample command files (drawing recognazible things), would be very instructive.
&lt;br/&gt;&lt;br/&gt;Thanks for all help in advance.
&lt;br/&gt;&lt;br/&gt;eengebruiker
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;


	
	
	
			
		</content>
		<link rel="alternate" type="text/html" href="https://forum.librecad.org/Introduction-tp5728328p5728333.html" />
		<thr:in-reply-to ref="tag:librecad.169.s1.nabble.com,2006:post-5728328"/>
	</entry>
	<entry>
		<id>tag:librecad.169.s1.nabble.com,2006:post-5728328</id>
		<title>Introduction</title>
		<published>2025-11-21T09:27:26Z</published>
		<updated>2025-11-21T09:27:26Z</updated>
		<author>
			<name>eengebruiker</name>
		</author>
		<content type="html">
			Hello, I am a new user. In the past I have used AutoCAD quite a lot, including AutoLisp programming (which I really liked to do). Of course there was also the script in AutoCAD.
&lt;br/&gt;&lt;br/&gt;Now I am trying to work with LibreCAD (personal use), and was immediately drawn to command files which I can create in other applications, for example Google Sheet.
&lt;br/&gt;&lt;br/&gt;In a way it is similar but the details are bugging me. I will post some question in the appropriate groups on this forum.
&lt;br/&gt;BTW, developers are reading on this forum as well. The documentation seems pretty basic. Some sample command files (drawing recognazible things), would be very instructive.
&lt;br/&gt;&lt;br/&gt;Thanks for all help in advance.
&lt;br/&gt;&lt;br/&gt;eengebruiker

	
	
	
			
		</content>
		<link rel="alternate" type="text/html" href="https://forum.librecad.org/Introduction-tp5728328.html" />
		
	</entry>
	<entry>
		<id>tag:librecad.169.s1.nabble.com,2006:post-5728304</id>
		<title>Mi presento</title>
		<published>2025-11-17T09:03:59Z</published>
		<updated>2025-11-17T09:03:59Z</updated>
		<author>
			<name>frappe</name>
		</author>
		<content type="html">
			buonasera, sono appena entrato nel forum essendo un vecchio geometra. Mi piace il CAD ma considerato che ho lasciato gli studi da circa 40 anni, vorrei riprendere dimestichezza con il programma.
&lt;br/&gt;Sono lieto di poter partecipare alle discussioni che serviranno sicuramente a migliorare l'apprendimento.

	
	
	
			
		</content>
		<link rel="alternate" type="text/html" href="https://forum.librecad.org/Mi-presento-tp5728304.html" />
		
	</entry>
	<entry>
		<id>tag:librecad.169.s1.nabble.com,2006:post-5728287</id>
		<title>Re: issues for new user?</title>
		<published>2025-11-13T01:02:35Z</published>
		<updated>2025-11-13T01:02:35Z</updated>
		<author>
			<name>LordOfBikes</name>
		</author>
		<content type="html">
			&lt;a href=&quot;https://forum.librecad.org/template/NamlServlet.jtp?macro=search_page&amp;node=4499512&amp;query=vertical&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://forum.librecad.org/template/NamlServlet.jtp?macro=search_page&amp;node=4499512&amp;query=vertical&lt;/a&gt;&lt;br/&gt;&lt;br/&gt;&lt;a href=&quot;https://forum.librecad.org/Controlling-vertical-line-lengths-in-Tools-Line-Vertical-Limitations-via-Command-Line-td5728147.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;https://forum.librecad.org/Controlling-vertical-line-lengths-in-Tools-Line-Vertical-Limitations-via-Command-Line-td5728147.html&lt;/a&gt;&lt;br/&gt;&lt;br/&gt;

	
	
	&lt;div class=&quot;signature weak-color&quot;&gt;
				&lt;sup&gt;investing less than half an hour into &lt;a href=&quot;https://forum.librecad.org/template/NamlServlet.jtp?macro=adv_search_page&amp;node=4499512&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot; link=&quot;external&quot;&gt;Search&lt;/a&gt; function can save hours or days of waiting for a solution&lt;/sup&gt;
			&lt;/div&gt;
			
		</content>
		<link rel="alternate" type="text/html" href="https://forum.librecad.org/issues-for-new-user-tp5728275p5728287.html" />
		<thr:in-reply-to ref="tag:librecad.169.s1.nabble.com,2006:post-5728285"/>
	</entry>
	<entry>
		<id>tag:librecad.169.s1.nabble.com,2006:post-5728285</id>
		<title>Re: issues for new user?</title>
		<published>2025-11-12T20:20:18Z</published>
		<updated>2025-11-12T20:20:18Z</updated>
		<author>
			<name>Frankaus</name>
		</author>
		<content type="html">
			unfornately that isnt the answer
&lt;br/&gt;Thank you

	
	
	
			
		</content>
		<link rel="alternate" type="text/html" href="https://forum.librecad.org/issues-for-new-user-tp5728275p5728285.html" />
		<thr:in-reply-to ref="tag:librecad.169.s1.nabble.com,2006:post-5728276"/>
	</entry>
	<entry>
		<id>tag:librecad.169.s1.nabble.com,2006:post-5728276</id>
		<title>Re: issues for new user?</title>
		<published>2025-11-12T01:52:16Z</published>
		<updated>2025-11-12T01:52:16Z</updated>
		<author>
			<name>aman</name>
		</author>
		<content type="html">
			Welcome!
&lt;br/&gt;&lt;br/&gt;Sounds you have draft mode selected, has caused some discussion here.
&lt;br/&gt;&lt;br/&gt;&lt;img src=&quot;https://forum.librecad.org/file/n5728276/draft.png&quot; border=&quot;0&quot;/&gt;&lt;br/&gt;&lt;br/&gt;Check from the top, that draft mode is not enabled.

	
	
	
			
		</content>
		<link rel="alternate" type="text/html" href="https://forum.librecad.org/issues-for-new-user-tp5728275p5728276.html" />
		<thr:in-reply-to ref="tag:librecad.169.s1.nabble.com,2006:post-5728275"/>
	</entry>
	<entry>
		<id>tag:librecad.169.s1.nabble.com,2006:post-5728275</id>
		<title>issues for new user?</title>
		<published>2025-11-12T00:19:36Z</published>
		<updated>2025-11-12T00:19:36Z</updated>
		<author>
			<name>Frankaus</name>
		</author>
		<content type="html">
			Hi, New user here, Having some issues with Librecad. 
&lt;br/&gt;cant draw a horizontal or verticle line, when i click on a point and enter the distance i require is says unknown command. 
&lt;br/&gt;It then draw a line for 1 grid only. 
&lt;br/&gt;can use line with 2 point though. but still cant use keyboard length.
&lt;br/&gt;layers, created some layers and select the layer, but the colour is wrong.
&lt;br/&gt;and help would be appreciated
&lt;br/&gt;Regards
&lt;br/&gt;Frank 
&lt;br/&gt;&lt;br/&gt;Version: v2.2.1.2
&lt;br/&gt;Compiler: GNU GCC 12.2.0
&lt;br/&gt;Compiled on: Jul 13 2025
&lt;br/&gt;Qt Version: 5.15.2
&lt;br/&gt;Boost Version: 1.87.0
&lt;br/&gt;System: Windows 10 Version 2009

	
	
	
			
		</content>
		<link rel="alternate" type="text/html" href="https://forum.librecad.org/issues-for-new-user-tp5728275.html" />
		
	</entry>
</feed>