60 questions
1
vote
0
answers
21
views
XBIm - boundingbox wrong dimensions with circular buildingelementproxy
I am trying to get the dimensions of the buildingelementproxy in VB.net
with rectangular form the dimensions are correct but when i have a circular object the values are off by approx. 10mm..... ...
1
vote
0
answers
36
views
Faulty display of IfcBooleanClippingResult
I'm currently working on an IfcViewer application using Xbim, and HelixToolkit. So far i've had no problem with the display if IFC files, and objects. Recently I've introduced objects where the ...
0
votes
0
answers
29
views
XBIM - how to make an IFC file with IfcRevolvedAreaSolid
Is there any sample code for how to write an IfcRevolvedAreaSolid into IFC using XBim SDK?
0
votes
0
answers
55
views
How to get oriented bounding box of Element in XBim?
I'm using the XBim library to extract information about IFC Furniture and Sanitary Elements. Part of that information is the (2D) outline of elements in space.
Ideally, I'd like to get the convex hull ...
0
votes
0
answers
49
views
XBIM how to calculate boundingbox dimensions (X,Y) flowfitting
I am trying to calculate/get the boundingbox dimensions of a flowfitting/flowterminal, but I can't get further, then the dimensions of 1 off the extruded solids with form the total representation off ...
0
votes
0
answers
40
views
Colorize, Transparent and Move Selected Entities on Xbim Control
I want to Colorize, Transparent and Move selected ifcElements in xbim control.
If xbim control does not support move, colorized and transparency, I would be very grateful if you could write a sample ...
0
votes
0
answers
123
views
XBIM - how to get rotation of an object (flowterminal)
I am trying to get the rotation of an object (flowterminal) from a IFC-file using XBIM
enter image description here
i can not seem to find a property, so it seems that the rotation needs to be ...
0
votes
1
answer
296
views
How to modify ifc file with xbim explorer
When I add an element to an ifc file, I have always a newer ifcownerhistory, person and organization created. I open my file ifc file with .Net xbim xplorer like this, and I save the default ...
0
votes
1
answer
266
views
Can xBim toolkit help me calculate the volume of some objects in an IFC model?
I am new to .NET xBim Toolkit and I wonder if it can help with calculating the volume of some objects in an IFC model. In particular, there is module called XbimGeometry but I am unsure if and how it ...
0
votes
2
answers
285
views
Xbim IFC Viewer ASP.NET
I successfully implemented an IFC viewer in NodeJs and am now trying to implement it in ASP.NET MVC Core 2.1
Here are my codes:
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml&...
-1
votes
1
answer
217
views
Xbim web viewer
i follow the steps in this page
https://docs.xbim.net/examples/hello-building.html
https://docs.xbim.net/XbimWebUI/
I install the npm package
npm install @xbim/viewer
And the package installed in:
C:\...
0
votes
1
answer
100
views
Xbim library does not find all properties
We process ifc IFC2X3 file for retrieving information.
With the following code some properties seems not to be found. Its about "Typical-code" in "General" section
//...
0
votes
1
answer
103
views
xbim distances between elements in a non axis aligned system
Question on the first answer about collision detection
How do I determine whether a 3D coordinate is located within the boundaries of a 3D object in BIM? I'm using Xbim working with IFC-files
In ...
0
votes
0
answers
249
views
Ugly shading in Xbim
I'm developing a software that can display 3D IFC building models. I'm using Xbim, and Helix toolkit for that.
I managed to display the geometry correctly, but there is something off with the shading ...
-1
votes
1
answer
990
views
How to get all the elements from the .ifc file?
I would like to Extract all the elements from the IFC file.
here is my code snippet
var allElements = model.Instances.OfType<IfcBuildingElement>().ToList();
from the above code, I can extract ...
0
votes
1
answer
312
views
No IFC projects found in file in IFC file created by xbim toolkit
I've refered a "HelloWall" sample program from XBim samples. The output IFC file seems to be ok. but when I try to open that IFC file in Autodesk Navisworks it gave me following error -
...
0
votes
1
answer
295
views
Select IFC Physical Simple Quantity of Wall
I'm using XBim IFC libraries in order to get some info of a Building model elements.
Specifically, of IfcWall entities.
I have to acces Wall Base Quantities (lenght, height, width, etc.) but I cant ...
0
votes
0
answers
90
views
How to stop xBim IfcStore.Open() operation?
I have a simple question - is it possible to stop/cancel xBim
var model = IfcStore.Open(...)
method once it has started to create database?
I have wrapped it in Task.Run like this to keep my app ...
0
votes
1
answer
153
views
How to make a simple 3D Ifc Viewer in WPF with Xbim v2
I am trying to make a small 3d viewer in VS2019 - are there any tutorials on XBim I have searched and cant find anything, I have seen this post How to make a simple 3D Ifc Viewer in WPF with Xbim I ...
0
votes
1
answer
270
views
Get object with the GloabId
Is it possible to find an object in an IFC file using Xbim.Essentials with the GlobalId value?
I saw this kind of code supposing I know the type...But I'd like to first find the object without knowing ...
0
votes
1
answer
1k
views
How to make a simple 3D Ifc Viewer in WPF with Xbim
I’m a C# and a WPF beginner and I’m trying for days to make an Ifc Viewer in my app.
I tried many ways to do it but I did not succeed and I turn around.
I got inspired by an other topic on the forum : ...
1
vote
1
answer
712
views
.NET service crashes ONLY on Docker
I have a .NET 6 service that runs fine on my local Windows 10 machine. When I deploy it on Docker with a multi-stage Dockerfile that uses these images:
mcr.microsoft.com/dotnet/aspnet:6.0-...
1
vote
1
answer
159
views
XBIM Web Viewer - Calculate HTML position from WCS
I'm trying to put an overlay over the top face of the bounding box of selected object. What I'm doing is:
1- Get the vertices of the bounding box top face in WCS, from center point
2- Translate each ...
0
votes
0
answers
419
views
Adding a wall with an opening Xbim
I am looking to adjust the template project to add an opening for the door so the door will be flush with the wall system instead of appearing embedded in the skin of the wall any help would be very ...
1
vote
1
answer
159
views
Get system with elements from a model
How do I get the elements in a HVAC system? I can access the list of the systems in a model with the following code:
var systems = model.Instances.OfType<IfcSystem>();
This returns a list of ...
0
votes
1
answer
537
views
Wexbim Files in Razor Pages
I am working on a razor pages project that needs to view IFC files, so I converted the IFC file into Wexbim files to use the XbimWebUi library.
My problem is when I use the Wexbim file from wwwroot I ...
0
votes
1
answer
107
views
Get TotalThickness value of IFCWALL element
How can I get the TotalThickness value of IFCWALL element using Xbim.Ifc2x3?
As I can see it is contained in wallElement.Material=>ForLayerSet=>TotalThickness
or in wallElement.IsTypedBy=>...
0
votes
1
answer
115
views
IfcRoof won't work without own ShapeRepresentation
I've tried to create a flatroof with an IfcSlab. The IfcRoof is supposed to be decomposed by the IfcSlab. I created the slab with a ShapeRepresentation and gave it coordinates. BuidlingSMART is ...
0
votes
1
answer
170
views
Different results for the same code with different Ifc versions
When I run the code below to get ifcWindow Area quantity using Ifc4 file and Xbim.Ifc4 interfaces it works perfectly.
But, When I'm trying to run on the same schema as Ifc2x3 file and using Xbim....
0
votes
1
answer
190
views
Get FinishFloorHeight of IfcSpace using Xbim
I'm trying to get the FinishFloorHeight of IfcSpace using Xbim.
Any idea of how to do that?
0
votes
2
answers
861
views
How to use Xbim in WPF to visualise an .IFC in 3D
I'm trying to learn how to use Xbim in a WPF app to create a 3D view of a model that the user can spin around and view. I load my ifc file in the C# code as follows:
var model = IfcStore.Open("...
0
votes
1
answer
370
views
List of all different IfcEntities in IfcFile
Summary
i have an ifc file with different IfcEntities like IfcWall, IfcBeam, IfcColumn etc.
i'm struggling to find a way to list all different entities in this ifc file
the list should contain every ...
0
votes
1
answer
185
views
How do you get IFCWindow sill height
How to get the sill height (height above the floor) of a Ifcwindow in ifc file
1
vote
1
answer
636
views
How do I create and manipulate a Table property for an IFC object using Xbim?
I am working off of the basic example for amending data (https://github.com/xBimTeam/XbimEssentials). The only thing I'm changing is within the code below, where I want to add an IfcPropertyTableValue ...
0
votes
1
answer
726
views
How do I determine whether a 3D coordinate is located within the boundaries of a 3D object in BIM? I'm using Xbim working with IFC-files
I have an IFC file of a 3D building model (BIM) split into constituent physical objects and I have properties that I want to assign to the correct object. The properties come with a location: they are ...
0
votes
1
answer
1k
views
How to I extract only the lowest-level objects in Xbim?
I have a BIM model in IFC format and I want to add a new property, say cost, to every object in the model using Xbim. I am building a .NET application. The following code works well, except, the ...
3
votes
1
answer
604
views
How to get the material data of specific IfcElement
In the basic operations in the xbim examples https://docs.xbim.net/examples/basic-model-operations.html, it shows how to retrieve the single value properties of a specific IfcElement. Based on this I'...
2
votes
1
answer
1k
views
Getting all properties of object using Ifc2x3
I am trying to retrieve all the properties in every item stored in an IFC file, similar to what you see when you select an item in xbim explorer and you get all data such as Type, DefiningType, ...
0
votes
1
answer
815
views
create custom polygon wall using xbim library
I try to make ifc wall using some polygon points and save to ifc file.
I found some approach and try that, but it does not work.
https://github.com/xBimTeam/XbimGeometry/issues/117
IFC - ...
0
votes
2
answers
904
views
xBim ifc manipulation: Trying to add a property set
I'm trying to manipulate an ifc2x3 file with xBim. It's based on the example: https://docs.xbim.net/examples/basic-model-operations.html
But when it comes to var pSetRel = model.Instances.New<...
0
votes
1
answer
492
views
Getting IfcPolyline from ifcSpace
I am quite new to xBim and I am struggeling to find the information I need. I have been able to iterate through all the IFCSpaces for each storey, and I would like to find each space's IfcPolyline so ...
0
votes
1
answer
964
views
How to integrate xBim in Unity?
I have installed xBim using NuGet for unity, and it is working well until I try to use the GeometryEngine to create 3D shapes:
using (IfcStore model = IfcStore.Open(filename, null))
{
var context =...
0
votes
1
answer
2k
views
Getting the wall coordinates from IFC file with XBIM
I need to get the list of vertices of IfcWall object using XBIM.
The code i need must look something like:
using (model)
{
List<ItemSet<IfcCartesianPoints>> loppsList = new List<...
1
vote
1
answer
1k
views
How to create a simple IFC file given end points of the beam and a cross section
I want to create an IFC file which represents a beam. The inputs I have is 2 points and a cross section definition. The purpose is to view the shape of the beam. Can someone point me in the right ...
0
votes
1
answer
468
views
How to get geometry information of a single wall?
I want to retrieve geometry information from a single wall in IFC file.
I have tried it using Xbim. I have learned that XbimModel.GetGeometryData Method (IfcProduct, XbimGeometryType) could be used ...
0
votes
1
answer
3k
views
How to create basic IFC File in C#
As per Wiki, The Industry Foundation Classes (IFC) data model is intended to describe architectural, building and construction industry data.
The Industry Foundation Classes (IFC) data model is a ...
0
votes
1
answer
329
views
xBIM Viewer: Create a screenshot from canvas
I am using xBim Toolkit (http://docs.xbim.net/) for 3D object rendering and there was a requirement to create a screenshot of the current scene on button click.
xBim is using canvas for graphical ...
2
votes
1
answer
3k
views
How to retrieve geometry from IFC file using Xbim ? Or is there anyother alternative to this task?
I want to retrieve data from raw IFC file.
I am trying this with Xbim. I am able to retrieve the elements but not able to get geometry specific data.I need location, boundingbox .
Is is possible to ...
0
votes
1
answer
148
views
Find Material of IPersistentEntity
I have list of IPersistEntity instances, that can be meshed, it means each of them implements one of these interfaces: IIfcFaceBasedSurfaceModel, IIfcShellBasedSurfaceModel, IIfcConnectedFaceSet, ...
0
votes
1
answer
470
views
How to transparent a single wall in xBim
I have a ifc file with with some walls & furniture.
When i am using the IfcSurfaceStyleRendering or IfcSurfaceStyleShading I makes all my walls transparent like this.
All the walls are IIfcWall &...