57 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
1
vote
0
answers
44
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
72
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 ...
1
vote
0
answers
121
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 ...
emilaz's user avatar
- 2,182
0
votes
0
answers
176
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
439
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
401
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
415
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
2
answers
426
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
131
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
165
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
289
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
1k
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
357
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
320
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
114
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 ...