Extension_gama.extension.dxf - gama-platform/gama GitHub Wiki
gama.extension.dxf
[dxf_file](OperatorsDH#dxf_file dxf_file), [is_dxf](OperatorsIM#is_dxf is_dxf),
-
dxf_file(string) --->file -
stringdxf_filefloat--->file -
dxf_file(string,float) --->file
Result: Constructs a file of type dxf. Allowed extensions are limited to dxf
- dxf_file(string): This file constructor allows to read a dxf (.dxf) file
file f <- dxf_file("file.dxf");
- dxf_file(string,float): This file constructor allows to read a dxf (.dxf) file and specify the unit (meter by default)
file f <- dxf_file("file.dxf",#m);
See also: is_dxf,
-
is_dxf(any) --->bool
Result: Tests whether the operand is a dxf file.
See also: dxf_file,