File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @tarikjabiri/dxf" ,
3
- "version" : " 3.0.0-alpha.8 " ,
3
+ "version" : " 3.0.0-alpha.13 " ,
4
4
"type" : " module" ,
5
5
"description" : " A DXF writer written in TypeScript." ,
6
6
"main" : " ./lib/index.cjs" ,
7
7
"module" : " ./lib/index.js" ,
8
8
"types" : " ./lib/index.d.ts" ,
9
- "repository" : " https://github.com/dxfjs/writer" ,
9
+ "repository" : {
10
+ "type" : " git" ,
11
+ "url" : " git+https://github.com/dxfjs/writer.git"
12
+ },
10
13
"author" : " Tarik EL JABIRI" ,
11
14
"license" : " MIT" ,
12
15
"homepage" : " https://dxf.vercel.app" ,
Original file line number Diff line number Diff line change @@ -42,9 +42,9 @@ export class Arc extends Entity {
42
42
mg . add ( 39 , this . thickness ) ;
43
43
mg . point ( this . center ) ;
44
44
mg . add ( 40 , this . radius ) ;
45
+ mg . point ( this . extrusion , 200 ) ;
45
46
mg . add ( 100 , "AcDbArc" ) ;
46
47
mg . add ( 50 , this . startAngle ) ;
47
48
mg . add ( 51 , this . endAngle ) ;
48
- mg . point ( this . extrusion , 200 ) ;
49
49
}
50
50
}
You can’t perform that action at this time.
0 commit comments