OpenCASCADE7.3.0 is available for download

OPEN CASCADE is pleased to announce a new public release of Open CASCADE Technology (version 7.3.0).

Open CASCADE Technology version 7.3.0 is a minor release, which includes more than 350 new features, improvements and bug fixes over minor release 7.2.0.

New in this version:

General

  • Support of Unicode file names and software signals handling for MinGW-w64 builds
  • Recommendations on fulfillment of LGPL terms in Overview documentation
  • Restored compatibility with Visual Studio 2008
  • Support of GBK and Big5 code pages

Application Framework

  • Ability to redefine the stored/retrieved document version and the application name

Modeling

  • Face Removal algorithm
  • Optimized surface intersection, shape offset and Boolean operation algorithms
  • Oriented Bounding Boxes (OBB)
  • More complete history in the family of Boolean Operations algorithms
  • Improved stability of BRepProj_Projection algorithm

Visualization

  • Corrected translation of single-stroke fonts into BRep
  • Improved compatibility with EGL on Linux, Intel HD GPUs, Mesa OpenGL, remote desktop
  • Possibility to arrange more than 8 light sources and assign them to layers
  • Possibility to assign Shading Model per primitive array
  • Support of custom GLSL programs with Geometry and Tessellation shaders
  • Distance and size culling options for rendering large scenes
  • Depth pre-pass option for rendering heavy custom GLSL programs
  • Verbose frame statistics for profiling 3D Viewer performance

Data exchange

  • Documentation for PMI in XCAF

OpenCASCADE7.3.0发布了,与7.2.0版本相比包含了350个新的功能还有很多bug的修复。

General

  • l 支持Unicode文件名;
  • l 支持Visual Studio 2008的编译。

Modeling

  • l 增加面去除算法Face Removal Algorithm;

  • l 优化面求交,偏称Offset和布尔操作Boolean Operation的算法。

  • l 增加Oriented Bounding Boxes(OBB)定向包围盒;

  • l 布尔操作Boolean Operation算法的完整的历史记录;

  • l 提高投影算法类BRepProj_Projection的稳定性;

Data Exchange
  • l 增加了关于XCAF中的PMI文档;

原文链接:

https://www.opencascade.com/content/open-cascade-technology-730-available-download

国内下载:

https://yun.baidu.com/pcloud/album/info?uk=3808749571&album_id=1612598197766366243

OpenCASCADE7.3.0 is available for download的更多相关文章

  1. 安装zabbix-3.0.3+nginx-1.10.1+php-5.6.22

    好久没有接触监控类的软件了,今天抽空搭建了下最新的版本 首先系统环境 zabbix-server-1 192.168.11.11   centos6.7 mysql-server    192.168 ...

  2. selenium2.0(WebDriver) API

    1.1  下载selenium2.0的包 官方download包地址:http://code.google.com/p/selenium/downloads/list 官方User Guide:  h ...

  3. 【转】如何在Windows+VS2005使用最新静态libcurl 7.35.0获取网页数据,支持HTTPS

    地址: http://blog.csdn.net/hujkay作者:Jekkay Hu(34538980@qq.com)关键词:Windows,curl,ssl,  visual c++ 2005, ...

  4. 未在本地计算机上注册“microsoft.ACE.oledb.12.0”提供程序解决办法

    一.未在本地计算机上注册“microsoft.ACE.oledb.4.0”提供程序 http://download.microsoft.com/download/7/0/3/703ffbcb-dc0c ...

  5. 64位centos 下编译 hadoop 2.6.0 源码

    64位os下为啥要编译hadoop就不解释了,百度一下就能知道原因,下面是步骤: 前提:编译源码所在的机器,必须能上网,否则建议不要尝试了 一. 下载必要的组件 a) 下载hadoop源码 (当前最新 ...

  6. 自己动手编译apache-tomcat-6.0.41-src源码

    第一步:下载apache-tomcat-6.0.41-src 第二步:阅读BUILDING.txt.了解所需要的步骤. In order to build a binary distribution ...

  7. INNO SETUP 5.5.0以上版本中文语言包

    ; *** Inno Setup version 5.5.0+ Chinese messages ***;; To download user-contributed translations of ...

  8. 実行時にMicrosoft.ACE.OLEDB.12.0プロバイダーはローカルコンピュータに登録されていませんが出てしまう

    環境 Windows8 64bit Visual Studio 2010 Access 2010 32bit 接続プロバイダは「Microsoft.ACE.OLEDB.12.0」 対応 Downloa ...

  9. 在 Ubuntu 14.04/15.04 上配置 Node JS v4.0.0

    大家好,Node.JS 4.0 发布了,这个流行的服务器端 JS 平台合并了 Node.js 和 io.js 的代码,4.0 版就是这两个项目结合的产物——现在合并为一个代码库.这次最主要的变化是 N ...

随机推荐

  1. hpuoj--校赛--送给新生的礼物(水题)

    问题 A: 感恩节KK专场--送给新生的礼物 时间限制: 1 Sec  内存限制: 128 MB 提交: 631  解决: 187 [提交][状态][讨论版] 题目描述 学长KK要送给学弟学妹们礼物, ...

  2. BZOJ 3209 数位DP

    思路: 先预处理出来组合数 按位做 枚举sum[x]是多少 注意Mod不是一个质数 //By SiriusRen #include <cstdio> using namespace std ...

  3. 如何配置MySQL?(三)

    要进行mysql配置,首先要找到mysql的配置向导文件,这个配置向导文件就在我们安装目录下的一个bin的子目录下. 刚才我们是选择典型安装MySQL,一般windows是默认存储在C:\Progra ...

  4. MySQL5.6主从复制方案

    MySQL5.6主从复制方案 1.主备服务器操作 环境:CentOS 6.3/6.4 最小化缺省安装,配置好网卡. 安装MySQL前,确认Internet连接正常,以便下载安装文件. # 新增用户组 ...

  5. 《剑指offer》数值的整数次方

    一.题目描述 给定一个double类型的浮点数base和int类型的整数exponent.求base的exponent次方. 二.输入 double base, int exponent 三.输出 b ...

  6. ES6学习笔记(十四)Generator函数

    清明时节雨纷纷,路上行人欲断魂. 借问酒家何处有,牧童遥指杏花村. 二零一九年农历三月初一,清明节. 1.简介 1.1.基本概念 Generator 函数也是 ES6 提供的一种异步编程解决方案,据说 ...

  7. subline Text3 插件安装

    --没有解决,换了vscode 安装Package Control 这是必须的步骤,安装任何插件之前需要安装这个 自动安装的方法最方便,只需要在控制台(不是win的控制台,而是subline 的)里粘 ...

  8. 使用npm上传npm包

    npm是一个node的包管理仓库,一个网站,也是一条命令.如何给node里增加npm包呢?只需三步就搞定. 第一步:在开始里边打开cmd进入自己的项目中,在项目目录中输入 npm init 回车会有一 ...

  9. [转] C# HttpWebRequest 绝技

    c# HttpWebRequest与HttpWebResponse绝技    阅读原文 如果你想做一些,抓取,或者是自动获取的功能,那么就跟我一起来学习一下Http请求吧.本文章会对Http请求时的G ...

  10. JAVA利用反射映射JSON对象为JavaBean

    关于将JSONObject转换为JavaBean,其实在JSONObject中有对于的toBean()方法来处理,还可以根据给定的JsonConfig来处理一些相应的要求,比如过滤指定的属性 //返回 ...