Skip to content

.Net library to that export BIM IFC files as SVG, OBJ, XML, DAE, STEP, IGES files

License

Notifications You must be signed in to change notification settings

cschen1205/cs-ifc-exporter

Repository files navigation

cs-ifc-exporter

.Net library to that export BIM IFC files as SVG, OBJ, XML, DAE, STEP, IGES files.

This project makes use of the IfcOpenShell

Install

Install-Package cs-ifc-exporter

Usage

The sample codes below shows how to use the IfConvert to convert IFC files into OBJ, XML or other formats:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace IfcExport
{
    class Program
    {
        static void Main(string[] args)
        {
            IfcConvert.Convert("sample.ifc", "sample.obj");
            IfcConvert.Convert("sample.ifc", "sample.xml");
            IfcConvert.Convert("sample.ifc", "sample.dae");
            IfcConvert.Convert("sample.ifc", "sample.igs");
            IfcConvert.Convert("sample.ifc", "sample.svg");
        }
    }
}

About

.Net library to that export BIM IFC files as SVG, OBJ, XML, DAE, STEP, IGES files

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages