read_dxf -- read in an ASCII dxf file

버전 1.0.0.0 (102 KB) 작성자: Steven Michael
read_dxf will load an ASCII dxf file into MATLAB.
다운로드 수: 7.7K
업데이트 날짜: 2005/9/19

라이선스 보기

Note: this project has been made obsolete. See the "model3d" project also on the file exchange for a more comprehensive 3D import package.

read_dxf loads facet information from an ASCII DXF file into MATLAB. It does not currently load color or texture information.

Usage:
dxf = read_dxf('dxf_filename');

The output is a Nx3x3 variable. The first index, N, references the facet number. The second index references the three vertices of each facet. The final index is the (x,y,z) location of the vertex.

I have also included a function "surfdxf" as an example of displaying the file.

The code uses a C++ class for DXF processing and is a compiled MATLAB function. The source and executables for Windows and Linux are included. For other platforms, the Makefile can be easily modified. I've also included the MS Visual Studio solution for compiling in Windows.

인용 양식

Steven Michael (2024). read_dxf -- read in an ASCII dxf file (https://www.mathworks.com/matlabcentral/fileexchange/7118-read_dxf-read-in-an-ascii-dxf-file), MATLAB Central File Exchange. 검색됨 .

MATLAB 릴리스 호환 정보
개발 환경: R14SP1
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 Model Import에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
버전 게시됨 릴리스 정보
1.0.0.0

update the description