QCAD Bugtracker

QCAD - 2D CAD System.

Click here for a documentation of the DokuWiki formatting syntax that can be used in reports

Please search for existing tasks (also closed ones) before opening a new task.

Please make sure that you are using the latest Version of QCAD before posting a bug (menu Help > Check for Updates)

IDCategoryTask TypeSeveritySummaryStatus  descProgress
 912 QCAD (main)Bug ReportLow Move to back has no effect on hatches / solid fills Closed
100%
Task Description

See:
http://www.qcad.org/rsforum/viewtopic.php?f=89&t=2548

 911 QCAD (main)Bug ReportLow Saving / loading text with accents ('é') Closed
100%
Task Description

Text with é turns into È.

 910 QCAD (main)Bug ReportLow Exploding block with attribute Closed
100%
Task Description

Exploding a block with attributes results in wrong exploded text (tag instead of value).

 909 QCAD (main)Bug ReportLow Moving paper in print preview: does not terminate Closed
100%
Task Description

Action to move paper in print preview does not properly terminate on right-click (paper can still be moved after right-click)

 907 QCAD (main)Bug ReportLow I, M file dialog doesn't work as intended (with fix) Closed
100%
Task Description

In scripts/Draw/Image/Image.js, while building the filter for the file dialog, constructs like this are used:

var formats = QImageReader.supportedImageFormats();

for (var i=0; i<formats.length; ++i) {
    var format = formats[i];

        if (format==="jpg" ||
            format==="tif") {
            continue;
        }

=== also checks for type equality, and since format is actually an object, it will never match. The result is that duplicates are not filtered from the list as the code suggests they were intended to be filtered, nor are formats that are not intended to be there.

The following patch fixes this:

diff --git a/scripts/Draw/Image/Image.js b/scripts/Draw/Image/Image.js
index 0a6400e..cc58c98 100644
--- a/scripts/Draw/Image/Image.js
+++ b/scripts/Draw/Image/Image.js
@@ -91,23 +91,23 @@ Image.prototype.getFileName = function() {
         var formatAlt = "";
 
         // ignore format aliases:
-        if (format==="jpg" ||
-            format==="tif") {
+        if (format=="jpg" ||
+            format=="tif") {
             continue;
         }
 
         // ignore unsupported formats:
-        if (format==="ico" || format==="mng" ||
-            format==="pbm" || format==="pgm" || format==="ppm" ||
-            format==="svg" || format==="svgz" ||
-            format==="xbm" || format==="xpm") {
+        if (format=="ico" || format=="mng" ||
+            format=="pbm" || format=="pgm" || format=="ppm" ||
+            format=="svg" || format=="svgz" ||
+            format=="xbm" || format=="xpm") {
             continue;
         }
 
-        if (format==="jpeg") {
+        if (format=="jpeg") {
             formatAlt = "jpg";
         }
-        else if (format==="tiff") {
+        else if (format=="tiff") {
             formatAlt = "tif";
         }
 
 906 QCAD (main)Bug ReportLow Stretch: not working for hatch entities Closed
100%
Task Description

Stretching hatch entities results in broken hatches.
Regression introduced in QCAD 3.1.5, bug still present in 3.2.2.

 905 QCAD (main)Bug ReportMedium Text tool regression Closed
100%
Task Description

Happened somewhere between ab3e02 (works) and 67516a (doesn’t work).

In 67516a (current HEAD), when I attempt to launch the Text tool, the following is printed on stderr:

Warning:  Script Exception:
 "ReferenceError: Can't find variable: RTextBasedData" 
Warning:  "<anonymous>()@/tmp/qcad/scripts/Draw/Text/TextDialog/TextDialog.js:838"          

The Tool options toolbar does appear and it can be interacted with. The Text tool does not appear at all (and text input in the Toolbar can not be placed either).

In ab3e02, the Text tool works as usual.

Hope I got it right this time – several clean builds have been made to double-check results.

 904 QCAD (main)Bug ReportHigh Crash when inserting some blocks from part library Closed
100%
Task Description

Tested on Linux Mint-64
Inserting some exsisting blocks or newly user created blocks makes QCAD quit!
Permissions were checked and also tested by submitting new blocks to new folder...but problem remains.
See related topic:
http://www.qcad.org/rsforum/viewtopic.php?f=33&p=8387#p8387

 903 QCAD (main)Bug ReportLow Cannot read POLYLINE / VERTEX entities from DXF Closed
100%
Task Description

Polylines that are stored with vertices as separate entities in DXF are not read by QCAD.
See:
http://www.qcad.org/rsforum/posting.php?mode=reply&f=33&t=2531

 902 QCAD (main)Bug ReportLow Reduced font selection not working as expected Closed
100%
Task Description

QCAD GPL Git reba26f7a, completely new configuration (seemingly important); also happens with the binary QCAD 3.2.2 download.

I wanted to use the Standard CAD font and the Standard CAD font only. To achieve that, in Application Preferences→Draw→Text, I ticked “Use reduced selection of fonts” and hit “Uncheck all”.

My expectation is that in this case the Text tool lists only the Standard font.

What actually happens is that the “Standard” font stays disabled, is deselected, and the Text tool lists every font I have installed on my system (system-wide fonts only, TTF and whatever else), and none of the CAD fonts bundled with QCAD in fonts/ (not even Standard).

There seems to be some inconsistency in the handling of “Standard” – it is apparently meant to be selected no matter what, and its checkbox disabled so the end user isn’t even able to de-select it. What actually happens is that the Text preferences “Check all”/”Uncheck all” buttons do affect its selected state.

At this time, the saved configuration (in ~/.config/QCAD3) contains the following entries:

[Text]
ReducedFontList=@Invalid()
UseReducedFontList=true

Note that at this point the Text preferences screen indicates that the Standard entry is disabled and not selected, see fontsel-1.png

So I did the following as an experiment:

--- a/scripts/Edit/AppPreferences/TextPreferences/TextPreferences.js
+++ b/scripts/Edit/AppPreferences/TextPreferences/TextPreferences.js
@@ -58,7 +58,7 @@ TextPreferences.initPreferences = function(pageWidget, calledByPrefDialog, docum
         // always check 'standard':
         if (item.text().toLowerCase()==="standard") {
             item.setCheckState(Qt.Checked);
-            flags = new Qt.ItemFlags(item.flags() & ~Qt.ItemIsEnabled);
+            // flags = new Qt.ItemFlags(item.flags() & ~Qt.ItemIsEnabled);
         }
         if (list.contains(item.text())) {
             item.setCheckState(Qt.Checked);

At this point, the Text preferences screen has the “Standard” font enabled and still not selected, see fontsel-2.png

The saved configuration file still contains an invalid entry for the font list:

[Text]
ReducedFontList=@Invalid()
UseReducedFontList=true

(This is probably is as intended, since the list is not supposed to be empty, but it really is now.)

Now let’s select “Standard” in the Text preferences screen, Apply, and undo the above change to TextPreferences.js.

At this point, the configuration file contains what seems correct:

[Text]
ReducedFontList=@Variant(\0\0\0\t\0\0\0\x1\0\0\0\n\0\0\0\x10\0S\0t\0\x61\0n\0\x64\0\x61\0r\0\x64)
UseReducedFontList=true

The font list on the Text preferences screen has changed as seen on fontsel-3.png.

Note that now the “Standard” font is again disabled, but now it is selected.

At this point, the Text tool behaves as expected: there is only one entry, the “Standard” CAD font.

Summary: I see two related issues:

  • If I tick “Use reduced selection of fonts” for the first time, “Standard” starts as being unselected, and it can not as such be selected by ticking its checkbox, because it is disabled
  • “Check all” does select it, but then “Uncheck all” also unselects it, whereas it should be immutable to these operations (and be selected in the first place).

What *can* be done is “Check all”, then manually unselect every other font one by one, but this is probably not how it was intended to work.

 900 QCAD (main)Bug ReportHigh Using text in 3.1.2 freezes QCAD Closed
100%
Task Description

Placing text in a drawing using 3.2.1 causes the application to freeze.
Please see topic:
http://www.qcad.org/rsforum/viewtopic.php?f=33&p=8355#p8355

 899 QCAD (main)Bug ReportLow (De-)Select Polygon - No Mode buttons/Icons showing Closed
100%
Task Description

Linux Mint -64

(De-)Select Polygon - No Mode buttons/Icons showing

 898 QCAD (main)Bug ReportLow Circle tool regression in git ec746571 Closed
100%
Task Description

Git ec746571 introduced the following artifact:

  • Start circle tool, center and radius
  • Click on point to select radius
  • Circle appears, along with a line to the coordinate system origin; also circle is not closed at around where this ghost line hits the circle entity
  • Happens with any circle tool, in slightly different manners
  • Doesn’t happen with any other tool, as far as I can tell

100% reproducible, doesn’t happen on git 6171094d.

This ghost line is also added to existing circles; ie. opening a drawing that has circles, a ghost line is attached to each of them. Not always pointing to the origin, but seems kind of random (changes with zoom level etc.)

It doesn’t seem to be a part of the drawing as such, as in ZA will not zoom so that all these ghost lines are fully visible, but the visual artifact remains.

If relevant: Linux/amd64 (Ubuntu 12.04), Qt 4.8.1, GCC 4.6.3, and as said, QCAD git ec746571.

Lines on attached illustration were not actually drawn in any way, shape or form; also they behave as if a particular line and its corresponding circle were a block, except one end of the line is firmly attached to origin.

 897 QCAD (main)Feature RequestVery Low New arc tool Closed
100%
Task Description

While constructing around the lack of “Line tangent to a circle, perpendicular to a line” ( FS#881 ) which I hereby second :)), it struck me that it might be useful to have a tool that finds the center point of an existing circle/ellipse, or possibly more generally, the center point of an existing circular/elliptical arc.

 896 QCAD (main)Bug ReportLow Lineweight problem Closed
100%
Task Description

Linux Mint - 64

I need to laser cut some dashed circles and in order to do this I need to change the lineweight to 0.00mm (this is the lineweight I use for all laser cutting), however when I do this the result I get is not acceptable.

Using a lineweight of 0.05 is fine but our laser cutters will only read a lineweight of 0.00mm.Normally I would use a linetype of continuous and would be no problem, but for this particular job I need to use the smallest Dash option here!
For now I can get around this problem but it would be good to be able to choose this lineweight and linetype choice at some stage.

 892 QCAD (main)Bug ReportLow DXF compatibility issues when saved as DXF R15 / dxflib Closed
100%
Task Description

This report concerns QCAD 3.2.1 when used without the Teigha plugin for DXF / DWG support:

While playing around, I created a simple drawing with QCAD 3.2.0 with just some lines and dimensions.

QCAD 3.2.0 renders it as shown in dim-qcad320.png.

QCAD 2.0.5.0-community renders it as shown in dim-qcad2050free.png.

DraftSight V1R3.2 pops up a window upon loading that says “Drawing file requires recovery. Do you want to proceed?”. If I choose recovery, it renders it as shown in dim-draftsightv1r32.png (if I choose not to recover, it quits). If now I save the recovered drawing in “R2000-2002 ASCII drawing (*.dxf)” format (which looks closest to what QCAD 3.2 offers to save as by default), both QCAD 2 and QCAD 3.2 render this repaired drawing as intended (ie. as in dim-qcad320.png).

 891 QCAD (main)Bug ReportLow Block - Create Library item: unit / reference point pos ...Closed
100%
Task Description

Created library item does not have the same unit as source drawing.
Zero point is not at chosen reference point.

Vers. 3.2.1, Drawing Unit “inch”!

... it takes the absolute 0 point as reference.

Millimeter works fine!!!

Rest of the units .... I don’t know ;-)

 890 QCAD (main)Bug ReportVery Low Relative zero point mark artifact on print preview Closed
100%
Task Description

The relative zero point mark appears on the print preview screen. I don’t know, if it also gets printed (my printer setup appears to be broken at the moment), but it does not get exported to PDF, so I guess it is only on the print preview.

On a side note, I think that the reset command (qq) should also clear this. The manual states:

The Neutral State of QCAD
Menu:    Edit - Reset
Keycode: QQ

After the start, QCAD is in its neutral state. That means that no special tool is active and QCAD waits for you to click a menu or tool button to start a tool and start doing something.

As there is no relative zero point just after startup, I think it should also not persist a qq.

 889 QCAD (main)Feature RequestLow Filter the current selection to only include entities o ...Closed
100%
2 Task Description

The property editor should do,
if I change
Selection: All(xx)
by Filtering by Entity Type
Selection: Circle(xx)
only the selected enteties(in this case the circles) should be selected, so we will be able to copy, delete ... directly

Der Eigenschaften Editor sollte wenn die
Auswahl: Alle(xxx) auf z.B.
Auswahl: Kreise (xx) geändert wird
auch nur diese Selektierung in der Zeichnung auswählen um direct kopieren, löschen ... zu können

 888 BookBug ReportLow Wrong pictures in hands-on Closed
100%
Task Description

In the “Drawing a Shape Using Absolute Polar Coordinates” hands-on, step 3, there are two toolbar pictures, each with a caption. The pictures don’t match the captions; ie. the pictures should be swapped.

 887 QCAD (main)Bug ReportLow Wrong warning window with area selection ... Closed
100%
Task Description

Lower left to upper right selection which includes invisible blocks causes warning window if I try to use the clipboard “copy” or “cut” function:

“Trying to draw on or modify entities on a locked or invisible layer”

... but it works!

Upper right to lower left selection over all doesn’t calls the warning window!

 886 BookBug ReportLow Wrong coordinates in the Orthographic Projections hands ...Closed
100%
Task Description

I have the book dating about a year back, with the following metadata (no other version information in there):

Producer:       FPDF 1.7
CreationDate:   Fri Aug 24 15:10:36 2012

I believe there is a slight error in the Orthographic Projections hands-on (it may not be there in current versions of the book, but since my download timeframe is long over, I can not check that – should that be the case, sorry for the noise).

On page 219, step 1 of the exercise (drawing the front view), it is said

Set the first corner of the rectangle at the origin of the drawing (1)
and the other corner at 30,20 (2).

On pages 225-226, steps 7 and 8, drawing a 45-degree auxiliary line for the right-side view, it is said

Set the position of the line at the origin of the drawing (coordinate 0/0).

0/0 is the “bottom left” corner of the top view. The correct coordinates for the auxiliary line’s position are 0/30, the “bottom left” corner of the front view.

(I had not realized the bug tracker had a Book category as well – hence this is a duplicate of an e-mail report I have sent to info@.)

 885 QCAD (main)Bug ReportLow Xcode Clang wrongly reported as GCC Closed
100%
Task Description

src/core/RSettings.cpp:RSettings::getCompilerVersion() doesn’t account for Clang, used in Xcode. Instead of reporting the appropriate Clang version number, it reports the GCC compatibility level. The following patch addresses the issue.

diff --git a/src/core/RSettings.cpp b/src/core/RSettings.cpp
index 46dc6df..d6fbe63 100644
--- a/src/core/RSettings.cpp
+++ b/src/core/RSettings.cpp
@@ -363,7 +363,9 @@ QString RSettings::getQtVersion() {
 }
 
 QString RSettings::getCompilerVersion() {
-#if defined(Q_CC_GNU)
+#if defined(Q_CC_CLANG)
+    return QString("Clang %1.%2.%3").arg(__clang_major__).arg(__clang_minor__).arg(__clang_patchlevel__);
+#elif defined(Q_CC_GNU)
     return QString("gcc %1.%2.%3").arg(__GNUC__).arg(__GNUC_MINOR__).arg(__GNUC_PATCHLEVEL__);
 #elif defined(Q_CC_MSVC)
 #   if _MSC_VER==1310
 884 QCAD (main)Feature RequestLow Tool for copying/pasting selected entities along a path Closed
100%
Task Description

Not sure how complicated this one might be to develop/implement ?

But a tool for copying/pasting entities along a given path would be great. In the attached snapshot you can see what I am trying to acheive - to copy/paste the brick along a wall contour. A dedicated tool for doing something like this would be great...sure I can do it with the tools provided in QCAD already but it sure would make life so much easier if there was a tool specific for this kind of thing.
I am actually working on some ‘real’work projects with these requirements and it does take a bit of time to get correct!

Or maybe an additional Points tool option to plant points along a curve would be good!

 883 QCAD (main)Feature RequestLow Information tool for finding the centroid of an irregul ...Closed
100%
1 Task Description

It would be extreamly useful to have an additional info tool to be able to find the centre of gravity (centroid) for an irregualr polygon.
For info please see:http://en.wikipedia.org/wiki/Centroid

Actually a tool whicn gives an option for finding the centre and centroid of polygons would be good.

 882 QCAD (main)Feature RequestLow Repeat last tool button Closed
100%
Task Description

A ‘Repeat last tool’ button would be useful.
When one has fully cancelled all operations, sometimes it would be convenient to have the option to have a repeat of the last tool again...I’m thinking that a simple button could do this a bit like the reset/idle button.

 881 QCAD (main)Feature RequestLow Line orthogonal to line and tangential to arc, circle o ...Closed
100%
2 Task Description

It would be useful to have an additional line tool that could be drawn tangent to an existing circle and perpendicular to a line.
see screenshot for the idea:

 880 QCAD (main)Feature RequestLow New Ellipse tools Closed
100%
Task Description

It would be good to have additional ellipse tools that could produce an ellipse:
Tangential to four given sides (closed like a Quadrilateral) or sperate sides and to 4 given coordinate points.
see snapshot for the idea.

 878 QCAD (main)Bug ReportLow Paste - Flip problem  Closed
100%
Task Description

Please see related topic:
http://www.qcad.org/rsforum/viewtopic.php?f=33&p=8292#p8292

 877 QCAD (main)Bug ReportLow Patches to build QCAD 3.2.0.0 on FreeBSD Closed
100%
1 Task Description

Hello,

The attached patches are used to build QCAD on FreeBSD.

Notes:

- patch-shared_app.pri adds a dependency to libexecinfo. It is marked as fixed in  FS#876 , but still there.

It could be useful also for the other BSDs.

- patch-src_3rdparty_opennurbs_opennurbs_system.h remove malloc.h. It is marked as fixed in  FS#875 , but still there.

- patch-src_3rdparty_3rdparty.pro, patch-src_core_core.pro, patch-src_core_math_RSpline.h and patch-src_entity_entity.pro allow to use opennurbs as a dependency from the ports system, which is the recommended method, but you may ignore them in the general distribution sources if you prefer.

- patch-src_core_RSettings.cpp is specific to the ports system (”/usr/local/share/qcad” is not really hardcoded, and modified according to $PREFIX at build time): you may ignore it if you want.

Best regards,

Th. Thomas

 876 QCAD (main)Bug ReportLow libexecinfo is needed on FreeBSD Closed
100%
Task Description

backtrace() and backtrace_symbols() need devel/libexecinfo on FreeBSD. The attached patch solves this, making QCAD fully buildable on FreeBSD (9).

Please note that I am by no means a qmake expert, this is likely to be a sub-standard way of attacking the problem at hand. Tweak as needed.

 875 QCAD (main)Bug ReportMedium malloc.h is deprecated Closed
100%
Task Description

This concerns the third-party openNURBS project and should probably be reported there, but I failed to find a bug tracker or anything of the sort, so here it goes.

malloc.h is deprecated (it has not been required since at least SUSv2, ratified in 1997). Apparently FreeBSD takes a more explicit stance against the use of it than other systems. The attached patch does away with it in openNURBS (conservatively leaving it in on Linux, but that should not really be neccessary either).

This makes the openNURBS component buildable on FreeBSD (9).

 874 QCAD (main)Bug ReportLow Spelling error in 3.2 for 3 Tangents (CT3) Closed
100%
Task Description

In the feedback info for 3 Tangents (CT3) there is a spelling error!

‘tree’ instead of Three is used.

 872 QCAD (main)Bug ReportMedium Crash in dwg2svg Closed
100%
Task Description

Conversion of certain files leads to crashes (segmentation fault).

See:
http://www.qcad.org/rsforum/viewtopic.php?f=33&t=2501

 871 QCAD (main)Bug ReportLow Incompatible text line feeds Closed
100%
Task Description

Editing text in QCAD leads to line feeds that are incompatible with some other products (\p instead of \P).

 870 QCAD (main)Bug ReportLow Isometric projection of text creates unwanted bounding  ...Closed
100%
Task Description

If I use the isometric tools for a text QCAD will keep a construction Box as a leftover ...

 869 QCAD (main)Feature RequestLow  Support for block attributes Closed
100%
Task Description

I would like to use QCAD at work.
Since the drawing using block attributes (ATTRIB) is not displayed correctly, I am troubled.
Please give me correspondence by all means.

 867 QCAD (main)Bug ReportLow Google viewer compatibility Closed
100%
Task Description

Please check the compatibility of dimensions size with google viewer of dxf. In earlier version, this compatibility was assured. Now character and arrow dimensions appear very small.

 865 QCAD (main)Bug ReportLow Invisible Blocks are causing a warning Window ... Closed
100%
Task Description

If I use in an area with invisible Blocks the “rectangular selection” in “lower left to upper right” direction for a move/copy, mirror, clipboard etc. action - a warning window appear. Also the reference points of the invisible blocks are visible.

If I use the “rectangular selection” in upper right to lower left direction everything works as expected.

 863 QCAD (main)Bug ReportLow "Auto Zoom" is aligned also on invisible blocks ... Closed
100%
Task Description

If I switch a Block to invisible and use then the “Auto Zoom” in my drawing - the zoom cutout will appear like the block would still be visible :-(

Attachment:
1. “Auto Zoom” (Z, A) / Visible Block
2. “Auto Zoom” (Z, A) / Invisible Block

 862 QCAD (main)Bug ReportLow Dimension settings - "Keep proportion" setting can't be ...Closed
100%
Task Description

XP 32/ QCAD 3.1.6

Drawing Preferences - Dimension settings - “Keep proportion” setting changes will not be saved with the Drawing. :-(

Maybe you have to try it a couple times with the same drawing ;-)

 861 QCAD (main)Bug ReportLow Widgets blends to early in ... Closed
100%
Task Description

I don’t know: Bug or Feature request ....

Example: If I move the “Library Browser” with the mouse closer than ~63px to the top corner it will go to blend in.
Undo doesn’t works in this case - so I have to pull it out and re-size the widget.

Usually it should blend in if I’m over the bar or at least I have to be much closer to the corner - or not?

 858 QCAD (main)Feature RequestLow Circle/Arc tangential on entities ... Closed
100%
Task Description

I’m not sure but if this is a duplicate please delete!

Feature Request:
It would be nice to have a tool what will help to draw tangential circles and arcs between other entities.

I imagine this tools with a three entities (circles, lines) selection or two entities plus a radius.

 857 QCAD (main)Bug ReportLow Breakout / Autotrim not working Closed
100%
Task Description

Windows 7-64

Please see attached a simple test to demonstrate the problem.

Breakout tool

1. When selecting the top half of the circle - the top half of the circle ‘breaks’ out as expected.
2. When selecting the bottom half of the circle - the whole circle disappears!

Autotrim tool

1. When selecting the top half of the circle - the trim seems to work.

2. When selecting the bottom half of the circle - no trim happens at all!

 856 QCAD (main)Feature RequestLow Option to create a polyline from 'selected' entities on ...Closed
100%
Task Description

It would be useful to have an additional option in the polyline tool set to be able to create a polyline from selected entities only, without the need first for preparatory drafting measures.
Basic example attached.
You see here I want to create a polyline from only the selected lines, thus leaving the rest as separate line segments.

 855 QCAD (main)Feature RequestLow Scale dimension on/off option ... Closed
100%
Task Description

QCAD 3.1.5 - has a new “Dimensioning Scale adjustment option” (Property editor/Linear Factor). NICE!!! :-)

What means - we are now able to change the dimension scale for existing dims!

My Feature request refers to new dimensions and I think it would be perfect to have a “Scale Factor - On/Off Option” for all Dim Tools.

That would bring us in the position to copy / scale a part of our drawing for a detail view and we could just use us usual the dimensioning tools (with a scale factor) for the dimensioning task ....

 854 QCAD (main)Bug ReportLow Main menu > Help > About dialog only opens once ! Closed
100%
Task Description

Windows 7-64
3.1.5

The ‘About’ dialog via the Help menu only opens once - QCAD restart needed to open again!

 852 QCAD (main)Bug ReportLow Circle hatch undo not correctly working .... Closed
100%
Task Description

Task: Selected “all” (Circle + Hatch)
Move / Copy tool,
Reference, move/copy, place, KEEP ORIGINAL, OK,
Undo,
Works!!!

Same scenario but DELETE ORIGINAL,
Undo,
Doesn’t works correctly! :-(

 851 QCAD (main)Bug ReportLow Wrong font name in DXF files created with dxflib 3.1 Closed
100%
Task Description

dxflib 3.1 saves the text style name as style font in text styles.

 850 QCAD (main)Bug ReportLow Splines not selectable Closed
100%
Task Description

Imported splines which typically represent lines, circles or arcs (explicit knot vector given) are sometimes wrongly identified as invalid by the OpenNURBS library.
This results in splines that are loaded and displayed correctly but are not selectable.

Showing tasks 1801 - 1850 of 2556 Page 37 of 52<<First - 35 - 36 - 37 - 38 - 39 - Last >>

Available keyboard shortcuts

Tasklist

Task Details

Task Editing