autodesk

Does Autodesk recommend offline forge viewer?

泪湿孤枕 提交于 2020-07-23 06:42:11
问题 Does Autodesk recommends offline forge viewer? what is advantages of offline forge viewer over online? I am referring this tutorial, but struggling with some error as follows: if there is any working example of offline forge viewer please drop link here. Thanks in advance!! 回答1: Does Autodesk recommends offline forge viewer? We are neutral on this - there's no recommendation as to whether to load the model from our service or your own ... it's entirely a matter of your business requirements .

How to activate Autodesk Forge Snapper?

白昼怎懂夜的黑 提交于 2020-03-26 04:45:11
问题 I'm trying to activate the new Snapper extension implemented since version 7.3 of the viewer. So I load the extension like that : viewer.loadExtension('Autodesk.Snapping') Seems to work. And after, I tried to access described methods like that but I always got this error " getSnapResult is not a function" : viewer.loadExtension('Autodesk.Snapping').then(extension =>{ snapper = extension; }); snapper.getSnapResult(); I'm still using the old extension made by Philippe Leefsma a few years ago :

Using Python to Automate AutoCAD

只谈情不闲聊 提交于 2020-01-14 03:31:06
问题 I'm very new to Python and AutoCAD so please bear with me. I'm trying to use Python to automate a design cycle in AutoCAD. So far I am able to add points and lines in AutoCAD via Python but I want to be able to change the linetype to a dotted line. I understand that this can be done in the command bar in AutoCAD with a few simple commands but I can't work out how to do it through Python. import array from _ast import If import comtypes.client import pyautocad #Get running instance of the

How to add a mesh to forge viewer v6 using Typescript?

我怕爱的太早我们不能终老 提交于 2020-01-07 09:47:44
问题 I need to know how to add meshes to Forge Viewer v6 using Type script. I went through all the topics and articles and it was working with v4. Now when I try the following code: private wallGeometry: THREE.BoxBufferGeometry; drawWalls() { this.wallGeometry = new THREE.BoxBufferGeometry(4000, 4000, 100, 1, 1, 1); console.log('creating wall geometry'); this.wallGeometry = new THREE.BoxBufferGeometry(4000, 4000, 100, 1, 1, 1); console.log('creating wall material'); let wallMaterial = new THREE

How to upload file to storage location in Autodesk Forge using 3-legged Token?

跟風遠走 提交于 2020-01-07 04:10:11
问题 I have genereted accessToken by 3-legged Token, bucketKey and objectName by Create a Storage Location API as shown in this tutorial(step 4). I want to upload file to storage location.My request returns 'OK 200' status, but it not upload file to A360, as I need. Where is the mistake? How to correctly upload file to user's storage location using 3-legged Token? [HttpGet] public JObject UploadFile(string accessToken,string bucketKey,string objectName,string filePath) { var url = String.Format(

What is the relationship between polyLines vertex and points in the block of DXF file?

戏子无情 提交于 2020-01-06 08:11:35
问题 What is the relationship between polyLines and points in the block of DXF file? If I provide grade rule table file, how to connect them ? 回答1: There is no such relationship. In DXF format. block may contain different entities like points, lines, polylines. Each of them has: position for: point, text, block reference, attribute start point and endpoint in case of line coordinates for polylines In grade rule table You have named points like point #1, #2, #3 . In AAMA DXF file there are text

Converting a CAD file to a shape file

杀马特。学长 韩版系。学妹 提交于 2020-01-01 15:03:45
问题 Thanks for the assist on my previous question.... I was able to complete my project This time I have a CAD file created with Autodesk that I need to convert to a shape file. Couple of questons: An open source application (can't afford ESRI) that can convert the CAD file to a shape file? Is that a better file format I can use other than the shape file (shp) format? Any suggestions would be greatly appricated Regards Chris 回答1: You should use OGR http://www.gdal.org/ogr/ It is the main program

Autodesk Forge viewer renders only single page for PDF files

风格不统一 提交于 2019-12-31 03:51:08
问题 In our application we're using Autodesk Forge Viewer to render 3D and 2D design files. Files with other formats get rendered pretty well. But in case of the pdf files, only the first page gets rendered even if the file actually has multiple pages. But we need to display all the pages . Here's the part of code I'm using to initialize the viewer: function doInitializeTheViewer(urn, token, element) { const options = { 'env': 'AutodeskProduction', 'accessToken': token }; let documentId = 'urn:' +

Autodesk Revit 2016 官方简体中文版

安稳与你 提交于 2019-12-26 17:08:00
【推荐】2019 Java 开发者跳槽指南.pdf(吐血整理) >>> Autodesk Revit 2016是欧特克旗下的一款三维建筑信息模型建模软件,这款软件包括了用来进行建筑设计、MEP 和结构工程以及施工的功能。2016版本在后台更新数据方面使用了另一个CPU来进行数据计算大大提高了模型更新速度,使用更加流畅了;新版本还能更改图形背景颜色,而不再单单只有黑白两色,这下长时间盯着Revit截面也不会再觉得眼酸疲劳啦。 功能介绍: (1)Revit 2016的三维透视图(相机三维视图)中,在ViewCube上点右键,可以看到多出了1个“切换到平行三维视图”命令。 (2)“三维透视图”中可以“编辑族”,也可以使用“移动”和“对齐”命令。 (3)“三维透视图”切换到“平行透视图”后,可以使用绝大部分“修改”命令,如移动、复制、旋转、对齐、偏移、镜像、阵列等,还可以“编辑族”、“创建类似实例”。 (4)详细操作见下面的图文。 1、三维透视图中,在ViewCube上点右键: (1)Revit 2014或2015的右键菜单 (2)Revit 2016的右键菜单:多出了1个“切换到平行三维视图”命令 2、Revit 2016的“三维透视图”切换到“平行透视图”后,在ViewCube上点右键,可以看到多出了1个“切换到透视三维视图”命令。 3、Revit 2016在“三维透视图”中可以

Trying to Create a bucket getting object is missing response

我的梦境 提交于 2019-12-25 09:19:22
问题 Tried to talk to the api with the following Request: POST /oss/v2/buckets/ HTTP/1.1 Host: developer.api.autodesk.com Authorization: "Bearer sOla4eICLR6IBcx0892MvPjJ***" Content-Type: application/json Cache-Control: no-cache Postman-Token: 1018dee7-22f1-d20b-4d11-32c4fd41d525 { "bucketKey":"energymetrics.bucket1", "policyKey":"transient" } Response: {{ "developerMessage": "Object is missing", "userMessage": "", "errorCode": "", "more info": "http://developer.api.autodesk.com/documentation/v1