Skip to content

Commit 67e3b02

Browse files
GDSII Record "ENDTEXTN" not "ENDEXTN"
Added the typo in the GDSII manual that allows Limbo to indentify the custom end extension for a path correctly, removing an error.
1 parent ff9cca4 commit 67e3b02

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/limboint.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -3645,7 +3645,7 @@ struct AsciiDataBase : public GdsParser::GdsDataBase
36453645
((this->cells)[this->numCell]).paths.back().setBExten(unitFactor * data[0]);
36463646
}
36473647
}
3648-
else if (ascii_record_type == "ENDEXTN")
3648+
else if (ascii_record_type == "ENDTEXTN")
36493649
{
36503650
// Scaling for end cap extensions
36513651
double unitFactor = this->getdbUnits();

0 commit comments

Comments
 (0)