绘制OpenCascade中的曲线

Size: px
Start display at page:

Download "绘制OpenCascade中的曲线"

Transcription

1 在 OpenSceneGraph 中绘制 OpenCascade 的曲线 Draw OpenCascade Geometry Curves in OpenSceneGraph 摘要 Abstract: 本文简要说明 OpenCascade 中几何曲线的数据, 并将这些几何曲线在 OpenSceneGraph 中绘制出来 关键字 KeyWords:OpenCascade Geometry Curve OpenSceneGraph B-Spline NURBS 一 引言 Introduction 结合 BRep Format Description White Paper 对 OpenCascade 中的几何数据结构有详细 的介绍 OpenCascade 中 BRep 格式中的曲线总共分为九种, 不过有二维三维之分 : 1. 直线 Line 2. 圆 Circle 3. 椭圆 Ellipse 4. 抛物线 Parabola 5. 双曲线 Hyperbola 6.Bezier 曲线 Bezier Curve 7.B-Spline 曲线 B-Spline Curve 8. 裁剪曲线 Trimmed Curve 9. 偏移曲线 Offset Curve 曲线的几何数据都有一个抽象基类 Geom_Curve, 类图如下所示 : Figure 1.1 Geometry curve class diagram 抽象基类 Geom_Curve 有几个纯虚函数 FirstParameter() LastParameter() Value(), 根据这几个虚函数, 就可以计算曲线上对应参数 U 的值 类图如下图所示 :

2 Geom_Circle Geom_BezierCurve Geom_Ellipse Geom_Curve +Standard_Real FirstParameter() +Standard_Real LastParameter() +gp_pnt Value(const Standard_Real U) Geom_BSplineCurve Geom_Hyperbola Geom_TrimmedCurve Geom_Parabola Geom_Line Figure 1.2 Geom_Curve Inherited class diagram 每种曲线都对那些纯虚函数进行实现, 使计算曲线上点的方式统一

3 二 程序示例 Code Example 根据抽象基类 Geom_Curve 的几个纯虚函数 : 1.FirstParameter(); 2.LastParameter(); 3.Value(u); 利用多态可将曲线上点都以统一的方式计算出来, 并使用 GL_LINE_STRIP 绘制出来 示例程序如下所示 : /* * Copyright (c) 2013 eryar All Rights Reserved. * * File : Main.cpp * Author : eryar@163.com * Date : :09 * Version : 1.0v * * Description : Draw OpenCascade Geometry Curves in OpenSceneGraph. * */ // OpenSceneGraph library. #include <osgdb/readfile> #include <osgviewer/viewer> #include <osgviewer/viewereventhandlers> #include <osgga/statesetmanipulator> #pragma comment(lib, "osgd.lib") #pragma comment(lib, "osgdbd.lib") #pragma comment(lib, "osggad.lib") #pragma comment(lib, "osgviewerd.lib") // OpenCascade library. #include <TColgp_Array1OfPnt.hxx> #include <TColStd_Array1OfReal.hxx> #include <TColStd_Array1OfInteger.hxx> #include <Geom_Circle.hxx> #include <Geom_Ellipse.hxx> #include <Geom_Hyperbola.hxx> #include <Geom_Parabola.hxx> #include <Geom_BezierCurve.hxx> #include <Geom_BSplineCurve.hxx> #pragma comment(lib, "TKernel.lib") #pragma comment(lib, "TKMath.lib") #pragma comment(lib, "TKG3d.lib") // Curve Segment Delta. const double CURVE_SEGMENT_DELTA = 0.01; /*

4 Build geometry curve of OpenCascade. */ osg::node* buildcurve(const Geom_Curve& curve) osg::ref_ptr<osg::geode> geode = new osg::geode(); osg::ref_ptr<osg::geometry> linesgeom = new osg::geometry(); osg::ref_ptr<osg::vec3array> pointsvec = new osg::vec3array(); gp_pnt point; double dfirst = curve.firstparameter(); double dlast = curve.lastparameter(); Precision::IsNegativeInfinite(dFirst)? dfirst = -1.0 : dfirst; Precision::IsInfinite(dLast)? dlast = 1.0 : dlast; for (double u = dfirst; u <= dlast; u += CURVE_SEGMENT_DELTA) point = curve.value(u); } pointsvec->push_back(osg::vec3(point.x(), point.y(), point.z())); // Set the colors. osg::ref_ptr<osg::vec4array> colors = new osg::vec4array; colors->push_back(osg::vec4(1.0f, 1.0f, 0.0f, 0.0f)); linesgeom->setcolorarray(colors.get()); linesgeom->setcolorbinding(osg::geometry::bind_overall); // Set the normal in the same way of color. osg::ref_ptr<osg::vec3array> normals = new osg::vec3array; normals->push_back(osg::vec3(0.0f, -1.0f, 0.0f)); linesgeom->setnormalarray(normals.get()); linesgeom->setnormalbinding(osg::geometry::bind_overall); // Set vertex array. linesgeom->setvertexarray(pointsvec); linesgeom->addprimitiveset(new osg::drawarrays(osg::primitiveset::line_strip, 0, pointsvec->size())); geode->adddrawable(linesgeom.get()); } return geode.release(); /** Build geometry curve of OpenCascade. */ osg::node* buildscene() osg::ref_ptr<osg::group> root = new osg::group();

5 // 1. Build circle curve. Geom_Circle circle(gp::yoz(), 1.0); root->addchild(buildcurve(circle)); // 2. Build ellipse curve. Geom_Ellipse ellipse(gp::zox(), 1.0, 0.3); root->addchild(buildcurve(ellipse)); // 3. Build Hyperbola curve. Geom_Hyperbola hyperbola(gp::xoy(), 1.0, 0.6); root->addchild(buildcurve(hyperbola)); // 4. Build parabola curve. Geom_Parabola parabola(gp::zox(), 1.0); root->addchild(buildcurve(parabola)); // 5. Build Bezier curve. TColgp_Array1OfPnt poles(1, 4); poles.setvalue(1, gp_pnt(-1, -1, 0)); poles.setvalue(2, gp_pnt(1, 2, 0)); poles.setvalue(3, gp_pnt(3, 0, 0)); poles.setvalue(4, gp_pnt(4, 1, 0)); Geom_BezierCurve beziercurve(poles); root->addchild(buildcurve(beziercurve)); // 6. Build BSpline curve. TColgp_Array1OfPnt ctrlpnts(1, 3); TColStd_Array1OfReal knots(1, 5); TColStd_Array1OfInteger mults(1, 5); ctrlpnts.setvalue(1, gp_pnt(0, 1, 0)); ctrlpnts.setvalue(2, gp_pnt(1, -2, 0)); ctrlpnts.setvalue(3, gp_pnt(2, 3, 0)); knots.setvalue(1, 0.0); knots.setvalue(2, 0.25); knots.setvalue(3, 0.5); knots.setvalue(4, 0.75); knots.setvalue(5, 1.0); mults.init(1); Geom_BSplineCurve bsplinecurve(ctrlpnts, knots, mults, 1); root->addchild(buildcurve(bsplinecurve));

6 } return root.release(); int main(int argc, char* argv[]) osgviewer::viewer myviewer; myviewer.setscenedata(buildscene()); myviewer.addeventhandler(new osgga::statesetmanipulator(myviewer.getcamera()->getorcreatestateset())); myviewer.addeventhandler(new osgviewer::statshandler); myviewer.addeventhandler(new osgviewer::windowsizehandler); } return myviewer.run(); 因抛物线和双曲线的 FirstParameter() 和 LastParameter() 为负无穷和正无穷, 所以对其进行处理, 只输出了部分曲线 程序效果如下图所示 : Figure 2.1 OpenCascade Geometry Curves in OpenSceneGraph

7 三 结论 Conclusion OpenCascade 的几何数据使用还是很方便的, 只要将相应的曲线构造出来之后, 计算曲线上的点使用函数 Value() 即可, 还可计算相应参数处的微分值等 通过理解 BRep Format Description White Paper, 可将 BRep 文件中数据导入 OpenCascade 中与上面实现的程序进行对比, 结果正确 如下图所示 : Figure 3.1 B-Spline in OpenSceneGraph Figure 3.2 B-Spline in OpenCascade Draw

OpenCascade中网格的数据结构

OpenCascade中网格的数据结构 OpenCascade 中网格的数据结构 Mesh Data Structure in OpenCascade eryar@163.com 摘要 Abstract: 本文对网格数据结构作简要介绍, 并结合使用 OpenCascade 中的数据结 构, 将网格数据在 OpenSceneGraph 中可视化 关键字 KeyWords:OpenCascade OpenSceneGraph Triangulation

More information

STL of Open Cascade Data Exchange

STL of Open Cascade Data Exchange Open Cascade Data Exchange --- STL eryar@163.com 摘要 Abstract: 介绍了三维数据交换格式 STL 的组成, 以及 Open Cascade 中对 STL 的读写 并将 Open Cascade 读进来的 STL 的三角面片在 OpenSceneGraph 中显示 关键字 Key Words:STL, Open Cascade, OpenSceneGraph,

More information

01-场景节点.doc

01-场景节点.doc OpenSceneGraph 场景节点 一 OSG 场景节点简介及组合模式介绍 OSG 中的场景是树形结构表示的层次结构, 如下图所示 : Figure 1.1 OpenSceneGraph 场景树形层次结构 根据其源码中的注释得知,OSG 中场景节点的管理采用了组合 (Composite) 模式 先简要 介绍一下组合模式, 其类图为 : Figure 1.2 Composite Pattern's

More information

¬¬

¬¬ 2 年 第 9 周 2.2.2-2.2.27 26 年 第 7 周 : 受 春 节 影 响, 一 二 级 市 场 无 供 应 成 交 26 年 第 7 周 (26 年 2 月 8 日 26 年 2 月 4 日 ) 哈 尔 滨 市 无 土 地 供 应 26 年 第 7 周 (26 年 2 月 8 日 26 年 2 月 4 日 ) 哈 尔 滨 市 无 土 地 成 交 26 年 第 7 周 (26 年 2

More information

All Rights Reserved, National Library Board, Singapore All Rights Reserved, National Library Board, Singapore All Rights Reserved, National Library Board, Singapore All Rights Reserved, National Library

More information

All Rights Reserved, National Library Board, Singapore All Rights Reserved, National Library Board, Singapore All Rights Reserved, National Library Board, Singapore All Rights Reserved, National

More information

All Rights Reserved, National Library Board, Singapore All Rights Reserved, National Library Board, Singapore All Rights Reserved, National Library Board, Singapore All Rights Reserved, National Library

More information

C++ 程式設計

C++ 程式設計 C C 料, 數, - 列 串 理 列 main 數串列 什 pointer) 數, 數, 數 數 省 不 不, 數 (1) 數, 不 數 * 料 * 數 int *int_ptr; char *ch_ptr; float *float_ptr; double *double_ptr; 數 (2) int i=3; int *ptr; ptr=&i; 1000 1012 ptr 數, 數 1004

More information

3. 企 业 债 券 : 公 司 债 券 : 5. 证 券 公 司 债 券 : 6. 企 业 短 期 融 资 券 : 7. 中 期 票 据 : 8. 资 产 支 持 证 券 : 9. 国 际 开 发 机 构 人 民 币 债 券 : 10. 中 小 非 金 融 企 业 集 合 票 据 例 题? 判 断

3. 企 业 债 券 : 公 司 债 券 : 5. 证 券 公 司 债 券 : 6. 企 业 短 期 融 资 券 : 7. 中 期 票 据 : 8. 资 产 支 持 证 券 : 9. 国 际 开 发 机 构 人 民 币 债 券 : 10. 中 小 非 金 融 企 业 集 合 票 据 例 题? 判 断 第 1 节 投 资 银 行 业 务 概 述 1. 投 资 银 行 的 含 义 [ 熟 悉 ]: 等 第 1 章 证 劵 经 营 机 构 的 投 资 银 行 业 务 (1) 狭 义 的 就 是 指 某 些 资 本 市 场 活 动, 着 重 指 一 级 市 场 上 的 承 销 并 购 和 融 资 活 动 的 财 务 顾 问 (2) 广 义 的 包 括 公 司 融 资 并 购 顾 问 股 票 和 债 券

More information

Delaunay Triangulation in OpenCascade

Delaunay Triangulation in OpenCascade Delaunay Triangulation in OpenCascade eryar@163.com 摘要 : 本文简要介绍了 Delaunay 三角剖分的基础理论, 并使用 OpenCascade 的三角剖分算 法将边界 BRep 表示的几何体进行三角离散化后在 OpenSceneGraph 中显示 关键字 :Delaunay Triangulation OpenCascade OpenSceneGraph

More information

Page 1 of 21 中 文 简 体 中 文 繁 体 邮 箱 搜 索 本 网 站 搜 索 搜 索 网 站 首 页 今 日 中 国 中 国 概 况 法 律 法 规 公 文 公 报 政 务 互 动 政 府 建 设 工 作 动 态 人 事 任 免 新 闻 发 布 当 前 位 置 : 首 页 >> 公 文 公 报 >> 国 务 院 文 件 >> 国 务 院 文 件 中 央 政 府 门 户 网 站 www.gov.cn

More information

優質居所 攜手共建

優質居所 攜手共建 2000 Housing Authority. All rights reserved. 2000 Housing Authority. All rights reserved. 2000 Housing Authority. All rights reserved. 2000 Housing Authority. All rights reserved. 2000 Housing Authority.

More information

<BBB6D3ADB7C3CECABFC6D1A7CEC4BBAFC6C0C2DB>

<BBB6D3ADB7C3CECABFC6D1A7CEC4BBAFC6C0C2DB> 1 of 5 7/18/2010 2:35 PM 联 系 管 理 员 收 藏 本 站 中 国 科 学 院 自 然 科 学 史 研 究 所 首 页 期 刊 介 绍 创 刊 寄 语 编 委 成 员 往 期 下 载 论 坛 网 络 资 源 12th ICHSC [ 高 级 ] 现 在 位 置 : 首 页 > 期 刊 文 章 小 中 大 打 印 关 闭 窗 口 PDF 版 查 看 桃 李 不 言, 下 自

More information

Topology and Geometry in OpenCascade

Topology and Geometry in OpenCascade Topology and Geometry in OpenCascade-Vertex eryar@163.com 摘要 Abstract: 本文简要介绍了几何造型中的边界表示法 ( BRep), 并结合程序说明 OpenCascade 中的边界表示的具体实现, 即拓朴与几何的联系 对具有几何信息的拓朴结构顶点 (vertex) 边(edge) 面(face) 进行了详细说明 本文只对顶点数据进行说明

More information

Microsoft Word - 把时间当作朋友(2011第3版)3.0.b.06.doc

Microsoft Word - 把时间当作朋友(2011第3版)3.0.b.06.doc 2 5 8 11 0 13 1. 13 2. 15 3. 18 1 23 1. 23 2. 26 3. 28 2 36 1. 36 2. 39 3. 42 4. 44 5. 49 6. 51 3 57 1. 57 2. 60 3. 64 4. 66 5. 70 6. 75 7. 83 8. 85 9. 88 10. 98 11. 103 12. 108 13. 112 4 115 1. 115 2.

More information

mvc

mvc Build an application Tutor : Michael Pan Application Source codes - - Frameworks Xib files - - Resources - ( ) info.plist - UIKit Framework UIApplication Event status bar, icon... delegation [UIApplication

More information

¬¬

¬¬ 211 年 第 9 周 211.2.21-211.2.27 216 年 第 27 周 : 土 地 市 场 冷 淡 商 品 房 成 交 有 所 上 涨 216 年 第 27 周 (216 年 6 月 27 日 216 年 7 月 3 日 ) 哈 尔 滨 市 有 5 块 经 营 性 供 应, 用 途 全 部 为, 主 要 位 于 平 房 216 年 第 27 周 (216 年 6 月 27 日 216

More information

Microsoft Word - 把时间当作朋友(2011第3版)3.0.b.07.doc

Microsoft Word - 把时间当作朋友(2011第3版)3.0.b.07.doc 2 5 8 11 0 1. 13 2. 15 3. 18 1 1. 22 2. 25 3. 27 2 1. 35 2. 38 3. 41 4. 43 5. 48 6. 50 3 1. 56 2. 59 3. 63 4. 65 5. 69 13 22 35 56 6. 74 7. 82 8. 84 9. 87 10. 97 11. 102 12. 107 13. 111 4 114 1. 114 2.

More information

Topology and Geometry in OpenCascade

Topology and Geometry in OpenCascade Topology and Geometry in OpenCascade Location and Orientaion eryar@163.com 摘要 Abstract: 本文简要介绍了几何造型中的边界表示法 (BRep), 并结合程序说明 OpenCascade 中的边界表示的具体实现, 即拓朴与几何的联系 拓朴结构中的位置 (Location) 和朝向 (Orientation) 进行了详细说明

More information

2002 Shintoukai Chinese Academy. All rights reserved 2

2002 Shintoukai Chinese Academy. All rights reserved 2 2002 Shintoukai Chinese Academy. All rights reserved 1 2002 Shintoukai Chinese Academy. All rights reserved 2 2002 Shintoukai Chinese Academy. All rights reserved 3 2002 Shintoukai Chinese Academy. All

More information

試卷一

試卷一 香 香 港 港 考 中 試 及 學 評 文 核 憑 局 年 月 版 的 暫 定 稿 中 國 歷 史 試 卷 一 考 試 時 間 : 兩 小 時 ( 樣 本 試 卷 本 各 試 設 卷 共 題 分, 兩 考 部 生 分 須, 於 第 每 一 部 部 分 分 各 為 選 必 答 答 題, 各 每 考 題 生 佔 均 須 作 分 答, 佔 分 第 二 部 分 分 甲 乙 兩 部, 5 0 3 1 2 5

More information

第 一 节 认 识 自 我 的 意 义 一 个 人 只 有 认 识 自 我, 才 能 够 正 确 地 认 识 到 自 己 的 优 劣 势, 找 出 自 己 的 职 业 亮 点, 为 自 己 的 顺 利 求 职 推 波 助 澜 ; 一 个 人 只 有 认 识 自 我, 才 能 在 求 职 中 保 持

第 一 节 认 识 自 我 的 意 义 一 个 人 只 有 认 识 自 我, 才 能 够 正 确 地 认 识 到 自 己 的 优 劣 势, 找 出 自 己 的 职 业 亮 点, 为 自 己 的 顺 利 求 职 推 波 助 澜 ; 一 个 人 只 有 认 识 自 我, 才 能 在 求 职 中 保 持 第 一 篇 知 己 知 彼, 百 战 不 殆 基 本 评 估 篇 第 一 章 认 识 自 我 我 就 是 一 座 金 矿 人 啊, 认 识 你 自 己! 塔 列 斯 ( 希 腊 学 者 ) 要 想 知 道 去 哪 儿, 必 须 先 知 道 你 现 在 在 哪 儿 和 你 是 谁 茜 里 娅. 德 纽 斯 ( 美 国 职 业 指 导 学 家 ) 本 章 提 要 了 解 认 识 自 我 在 职 业 生

More information

陳偉補習班環境介紹

陳偉補習班環境介紹 肆 各 专 业 科 目 可 报 考 学 校 一 览 表 选 考 : 经 济 学 ( 含 政 治 经 济 学 微 观 经 济 学 宏 观 经 济 学 ) 020201 国 民 经 济 学 8 北 京 光 华 管 理 学 020204 金 融 学 83 020205 产 业 经 济 学 4 清 华 经 济 管 理 学 020100 理 论 经 济 学 020200 应 用 经 济 学 6 020201

More information

untitled

untitled A, 3+A printf( ABCDEF ) 3+ printf( ABCDEF ) 2.1 C++ main main main) * ( ) ( ) [ ].* ->* ()[] [][] ** *& char (f)(int); ( ) (f) (f) f (int) f int char f char f(int) (f) char (*f)(int); (*f) (int) (

More information

B

B 90/5/22 (90) 04594 91 12 31 P * 1-12 1 13 01 01 1 2 18-21 22-24 1 2 1 2 / 31-32 37-38 I4 I2I3I4 I2I3I4 . () () ( )... 00 90 010203040506 070809 101112 13141516 17 99 ( ) ( ) ( ) 91. 92. 1 1 2 3 4 ( ) 1

More information

中国人民大学公共管理大专业考研必读信息(公共管理学院部分)

中国人民大学公共管理大专业考研必读信息(公共管理学院部分) 北 京 科 技 大 学 文 法 学 院 行 政 管 理 专 业 考 研 大 纲 - 考 研 经 验 分 享 - 考 研 真 题 北 科 文 法 学 院 行 政 管 理 考 研 841 行 政 管 理 学 张 国 庆 公 共 行 政 学 笔 记 第 八 章 行 政 执 行 第 一 节 行 政 执 行 概 述 一 行 政 执 行 的 概 念 缘 起 和 定 义 行 政 执 行 : 是 指 国 家 行 政

More information

三、育明考博总结中共中央党校考博复习策略(育明教育考博课程中心)

三、育明考博总结中共中央党校考博复习策略(育明教育考博课程中心) 中 央 财 经 经 济 学 院 西 方 经 济 学 考 博 初 试 复 试 考 试 指 导 - 育 明 考 博 一 中 央 财 经 大 学 西 方 经 济 学 专 业 博 士 招 生 考 试 内 容 ( 育 明 课 程 中 心 ) 招 生 专 业 招 生 人 数 初 试 考 试 科 目 复 试 考 试 科 目 020104 西 方 经 济 学 3 人 11001 英 语 22001 经 济 学 基

More information

2015 年 度 收 入 支 出 决 算 总 表 单 位 名 称 : 北 京 市 朝 阳 区 卫 生 局 单 位 : 万 元 收 入 支 出 项 目 决 算 数 项 目 ( 按 功 能 分 类 ) 决 算 数 一 财 政 拨 款 168738.36 一 一 般 公 共 服 务 支 出 53.83 二

2015 年 度 收 入 支 出 决 算 总 表 单 位 名 称 : 北 京 市 朝 阳 区 卫 生 局 单 位 : 万 元 收 入 支 出 项 目 决 算 数 项 目 ( 按 功 能 分 类 ) 决 算 数 一 财 政 拨 款 168738.36 一 一 般 公 共 服 务 支 出 53.83 二 2015 年 度 部 门 决 算 报 表 ( 含 三 公 经 费 决 算 ) 2015 年 度 收 入 支 出 决 算 总 表 单 位 名 称 : 北 京 市 朝 阳 区 卫 生 局 单 位 : 万 元 收 入 支 出 项 目 决 算 数 项 目 ( 按 功 能 分 类 ) 决 算 数 一 财 政 拨 款 168738.36 一 一 般 公 共 服 务 支 出 53.83 二 上 级 补 助 收 入

More information

目 录 第 一 部 分 档 案 局 概 况 一 主 要 职 责 二 部 门 决 算 单 位 构 成 第 二 部 分 档 案 局 2016 年 度 部 门 预 算 表 一 2016 年 度 市 级 部 门 收 支 预 算 总 表 二 2016 年 度 市 级 部 门 支 出 预 算 表 三 2016

目 录 第 一 部 分 档 案 局 概 况 一 主 要 职 责 二 部 门 决 算 单 位 构 成 第 二 部 分 档 案 局 2016 年 度 部 门 预 算 表 一 2016 年 度 市 级 部 门 收 支 预 算 总 表 二 2016 年 度 市 级 部 门 支 出 预 算 表 三 2016 档 案 局 2016 年 度 部 门 预 算 1 目 录 第 一 部 分 档 案 局 概 况 一 主 要 职 责 二 部 门 决 算 单 位 构 成 第 二 部 分 档 案 局 2016 年 度 部 门 预 算 表 一 2016 年 度 市 级 部 门 收 支 预 算 总 表 二 2016 年 度 市 级 部 门 支 出 预 算 表 三 2016 年 度 市 级 部 门 财 政 拨 款 支 出 预

More information

1994-2010 China Academic Journal Electronic Publishing House. All rights reserved. http://www.cnki.net 1994-2010 China Academic Journal Electronic Publishing House. All rights reserved. http://www.cnki.net

More information

1994-2011 China Academic Journal Electronic Publishing House. All rights reserved.

1994-2011 China Academic Journal Electronic Publishing House. All rights reserved. 1994-2011 China Academic Journal Electronic Publishing House. All rights reserved. http://www.cnki.net 1994-2011 China Academic Journal Electronic Publishing House. All rights reserved. http://www.cnki.net

More information

China Academic Journal Electronic Publishing House. All rights reserved.

China Academic Journal Electronic Publishing House. All rights reserved. 1994-2010 China Academic Journal Electronic Publishing House. All rights reserved. http://www.cnki.net 1994-2010 China Academic Journal Electronic Publishing House. All rights reserved. http://www.cnki.net

More information

,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 1994-2010 China Academic Journal Electronic Publishing House. All rights reserved. http://www.cnki.net ,,,,,, 1994-2010 China Academic Journal Electronic

More information

幻灯片 1

幻灯片 1 二 十 年 目 睹 之 怪 现 状 清 吴 沃 尧 (1866 1910) 著 吴 氏 原 字 茧 人 后 改 趼 人 广 东 南 海 人 因 居 佛 山 故 笔 名 我 佛 山 人 出 身 世 宦 之 家 因 家 道 中 落 20 多 岁 去 上 海 谋 生 后 客 居 山 东 又 远 游 日 本 1904 年 任 美 国 人 办 的 楚 报 主 笔 后 辞 职 返 沪 参 加 反 华 工 禁 约

More information

1994-2009 China Academic Journal Electronic Publishing House. All rights reserved. http://www.cnki.net 1994-2009 China Academic Journal Electronic Publishing House. All rights reserved. http://www.cnki.net

More information

封面及首頁.doc

封面及首頁.doc Terms of Use The copyright of this thesis is owned by its author. Any reproduction, adaptation, distribution or dissemination of this thesis without express authorization is strictly prohibited. All rights

More information

打 造 新 型 领 导 力 揭 示 未 来 领 导 力 面 临 的 新 挑 战 根 据 Hay ( 合 益 ) 集 团 2030 领 导 力 的 研 究 发 现, 未 来 的 领 导 者 想 要 成 功 就 必 须 掌 握 新 的 技 能 和 素 质 内 容 介 绍 2 1 全 球 范 围 内 的 力 量 对 比 正 在 发 生 变 化 5 2 气 候 变 化 和 资 源 匮 乏 的 问 题 与

More information

OpenCascade BRep Format Description

OpenCascade BRep Format Description OpenCascade BRep Format Description eryar@163.com 摘要 Abstract: 本文结合 OpenCascade 的 BRep 格式描述文档和源程序, 对 BRep 格式 进行分析, 详细说明 BRep 的数据组织形式 结合源程序, 可以对 OpenCascade 中 Modeling Data 模块中的模型数据结构进行理解 关键字 Key Words:OpenCascade,

More information

Microsoft Word - 12 hhg - 1-1.doc

Microsoft Word - 12 hhg - 1-1.doc 今 天, 在 面 對 著 她 的 遺 像 時, 我 們 幾 乎 沒 有 人 敢 自 稱 是 思 想 家 革 命 家 文 學 家 或 民 主 鬥 士 林 昭, 一 個 年 輕 女 子, 她 那 徹 底 的 反 抗 思 想, 不 屈 的 反 抗 勇 氣 ; 她 對 捲 土 重 來 的 殘 暴 專 制 統 治 敢 於 毫 不 妥 協, 直 至 敢 於 以 生 命 去 決 戰 的 大 無 畏 精 神 ; 無

More information

Microsoft Word - HHG 10 Page 001.doc

Microsoft Word - HHG 10 Page 001.doc 歷 史 文 化 季 刊 2004 年 第 3 期 HUANG HUA GANG ( 總 第 10 期 ) 從 英 法 俄 德 護 國 護 法 的 歷 史 看 大 中 華 民 國 護 國 護 法 的 歷 程 和 前 途 黃 花 崗 千 古 王 炳 章 萬 難 首 屆 黃 花 崗 精 神 獎 頒 獎 始 末 記 為 中 國 文 化 敬 告 世 界 人 士 宣 言 ( 緒 ) 從 香 港 的 反 間 諜

More information

封面.PDF

封面.PDF Terms of Use The copyright of this thesis is owned by its author. Any reproduction, adaptation, distribution or dissemination of this thesis without express authorization is strictly prohibited. All rights

More information

Topology and Geometry in OpenCascade

Topology and Geometry in OpenCascade Topology and Geometry in OpenCascade-Edge eryar@163.com 摘要 Abstract: 本文简要介绍了几何造型中的边界表示法 ( BRep), 并结合程序说明 OpenCascade 中的边界表示的具体实现, 即拓朴与几何的联系 对具有几何信息的拓朴结构 顶点 (vertex) 边 (edge) 面 (face) 进行了详细说明 本文只对拓朴边数据进行说明,

More information

BOOL EnumWindows(WNDENUMPROC lparam); lpenumfunc, LPARAM (Native Interface) PowerBuilder PowerBuilder PBNI 2

BOOL EnumWindows(WNDENUMPROC lparam); lpenumfunc, LPARAM (Native Interface) PowerBuilder PowerBuilder PBNI 2 PowerBuilder 9 PowerBuilder Native Interface(PBNI) PowerBuilder 9 PowerBuilder C++ Java PowerBuilder 9 PBNI PowerBuilder Java C++ PowerBuilder NVO / PowerBuilder C/C++ PowerBuilder 9.0 PowerBuilder Native

More information

White Paper 2014 届 毕 业 生 内 部 资 料 严 禁 抄 袭 非 经 允 许 不 得 翻 印 就 业 状 况 白 皮 书 就 业 创 业 指 导 中 心 2015 年 5 月 目 录 第 一 部 分 毕 业 生 基 本 情 况... 1 一 2014 届 毕 业 生 基 本 情 况... 1 1 性 别 比 例... 1 2 学 历 类 别... 2 二 初 次 签 约 就 业

More information

1 4 1.1 4 1.2..4 2..4 2.1..4 3.4 3.1 Java.5 3.1.1..5 3.1.2 5 3.1.3 6 4.6 4.1 6 4.2.6 5 7 5.1..8 5.1.1 8 5.1.2..8 5.1.3..8 5.1.4..9 5.2..9 6.10 6.1.10

1 4 1.1 4 1.2..4 2..4 2.1..4 3.4 3.1 Java.5 3.1.1..5 3.1.2 5 3.1.3 6 4.6 4.1 6 4.2.6 5 7 5.1..8 5.1.1 8 5.1.2..8 5.1.3..8 5.1.4..9 5.2..9 6.10 6.1.10 Java V1.0.1 2007 4 10 1 4 1.1 4 1.2..4 2..4 2.1..4 3.4 3.1 Java.5 3.1.1..5 3.1.2 5 3.1.3 6 4.6 4.1 6 4.2.6 5 7 5.1..8 5.1.1 8 5.1.2..8 5.1.3..8 5.1.4..9 5.2..9 6.10 6.1.10 6.2.10 6.3..10 6.4 11 7.12 7.1

More information

ebook111-4

ebook111-4 Flash 4 Flash 4 F l a s h 5 Flash 4 Flash Flash 4 Flash 4 Flash 4 4.1 Flash 4 Flash 4 Flash 4 Flash Flash 4 Flash 4 4.2 Flash 4 Flash 4 A Flash 4 S h i f t F i l e P r e f e r e n c e s > > Flash 4 Flash

More information

黃 花 崗 讀 者 子 日 先 生 在 大 陸 遙 祝 雜 誌 同 仁 中 秋 好! 參 加 過 八 年 抗 戰 的 國 民 革 命 軍 前 中 將 羅 澄 先 生 告 訴 黃 花 崗 雜 誌 主 編 說 : 你 們 做 的 就 是 在 歷 史 和 文 化 上 正 本 清 源 繼 往 開 來 的 大

黃 花 崗 讀 者 子 日 先 生 在 大 陸 遙 祝 雜 誌 同 仁 中 秋 好! 參 加 過 八 年 抗 戰 的 國 民 革 命 軍 前 中 將 羅 澄 先 生 告 訴 黃 花 崗 雜 誌 主 編 說 : 你 們 做 的 就 是 在 歷 史 和 文 化 上 正 本 清 源 繼 往 開 來 的 大 黃 花 崗 讀 者 子 日 先 生 在 大 陸 遙 祝 雜 誌 同 仁 中 秋 好! 參 加 過 八 年 抗 戰 的 國 民 革 命 軍 前 中 將 羅 澄 先 生 告 訴 黃 花 崗 雜 誌 主 編 說 : 你 們 做 的 就 是 在 歷 史 和 文 化 上 正 本 清 源 繼 往 開 來 的 大 事 業, 你 們 做 得 很 好! 本 刊 新 聘 編 委 前 中 共 新 華 社 越 共 越 南

More information

第3章.doc

第3章.doc 3 3 3 3.1 3 IT Trend C++ Java SAP Advantech ERPCRM C++ C++ Synopsys C++ NEC C C++PHP C++Java C++Java VIA C++ 3COM C++ SPSS C++ Sybase C++LinuxUNIX Motorola C++ IBM C++Java Oracle Java HP C++ C++ Yahoo

More information

All Rights Reserved, National Library Board, Singapore All Rights Reserved, National Library Board, Singapore Tel: (07) 3537675 Fax: (07) 3539493 ALL COPY RIGHTS RESERVIED BY WONG HONG MOK (COMPASS)

More information

一 土 地 市 场 1 土 地 供 应 2016 年 第 19 周 (2016 年 5 月 2 日 2016 年 5 月 8 日 ), 北 京 供 应 土 地 0 宗 2016 年 第 19 周 北 京 房 地 产 市 场 土 地 供 应 一 览 表 地 块 面 积 宗 地 号 / 名 称 交 易

一 土 地 市 场 1 土 地 供 应 2016 年 第 19 周 (2016 年 5 月 2 日 2016 年 5 月 8 日 ), 北 京 供 应 土 地 0 宗 2016 年 第 19 周 北 京 房 地 产 市 场 土 地 供 应 一 览 表 地 块 面 积 宗 地 号 / 名 称 交 易 2016 年 第 19 周 2016.5.2-2016.5.8 北 京 / 市 场 周 报 第 19 周 : 五 月 首 周 一 二 手 房 成 交 热 度 降 低 土 地 市 场 再 现 热 潮 2016 年 第 19 周 (2016 年 5 月 2 日 2016 年 5 月 8 日 ), 北 京 供 应 土 地 0 宗, 成 交 3 宗, 新 增 预 售 证 2 个 北 京 商 品 住 宅 市

More information

1 1200 1290 3 12 6 13 18 19 22 26 11 7 1 12 12 11 1883 1933 20 20 1911

More information

nan_yang_ming_ren_ji_zhuan.xls

nan_yang_ming_ren_ji_zhuan.xls 1 白 火 炭 福 建 安 溪 字 圻 金 疋 头 布 纱 类 新 加 坡 ; 爪 哇 之 泗 水 2 下 402 2 白 廪 福 建 安 溪 垦 殖 黄 梨 新 加 坡 4 130 3 白 平 福 建 安 溪 交 易 旧 玻 璃 罐 新 加 坡 ( 永 和 安 号 5 330 4 白 青 云 福 建 安 溪 字 锡 登 杂 货 火 油 和 暹 属 之 通 扣 埠 ; 万 振 泰 公 司 ; 建 2

More information

开 发 领 导 小 组 2016 年 3 月 16 日 发 布 实 8 水 利 部 办 公 厅 中 国 农 业 发 展 银 行 办 公 室 关 于 做 好 抵 押 补 充 贷 款 项 目 库 管 理 工 作 的 通 知 ( 水 利 部 中 国 农 业 发 展 银 行 2016 年 3 月 23 日

开 发 领 导 小 组 2016 年 3 月 16 日 发 布 实 8 水 利 部 办 公 厅 中 国 农 业 发 展 银 行 办 公 室 关 于 做 好 抵 押 补 充 贷 款 项 目 库 管 理 工 作 的 通 知 ( 水 利 部 中 国 农 业 发 展 银 行 2016 年 3 月 23 日 编 辑 : 汉 坤 研 究 室 2016 年 3 月 1 日 至 2016 年 3 月 31 日 新 法 规 投 资 公 司 1 国 家 发 展 改 革 委 商 务 部 关 于 印 发 市 场 准 入 负 面 清 单 草 案 ( 试 点 版 ) 的 通 知 ( 国 家 发 展 和 改 革 委 员 会 商 务 部 2016 年 3 月 2 日 发 布 实 2 工 业 和 信 息 化 部 关 于 进 一

More information

Microsoft Word - HHG 14 Page 001.doc

Microsoft Word - HHG 14 Page 001.doc 大 中 華 民 國 的 衛 國 戰 爭 勝 利 萬 歲 辛 灝 年 在 休 士 頓 達 拉 斯 講 演 我 們 偉 大 的 衛 國 戰 爭 勝 利 萬 歲 掌 聲 經 久 難 息 高 喊 凡 是 假 改 革 必 來 真 革 命 徐 錫 麟 : 刺 殺 安 徽 巡 撫 恩 銘 歷 史 文 化 季 刊 2005 年 第 3 期 總 第 14 期 主 辦 者 中 國 現 代 史 研 究 中 心 Huang

More information

chap-1_NEW.PDF

chap-1_NEW.PDF Terms of Use The copyright of this thesis is owned by its author. Any reproduction, adaptation, distribution or dissemination of this thesis without express authorization is strictly prohibited. All rights

More information

在挑选合适的 SDK 的时候需要注意, 标准 windows 平台应用选择 FBX SDK VS2015,windows 应用商店和全平台通用的不用考虑 windows 全平台通用的应用是 windows10 新推出的功能, 可以打通 windows phone windows s

在挑选合适的 SDK 的时候需要注意, 标准 windows 平台应用选择 FBX SDK VS2015,windows 应用商店和全平台通用的不用考虑 windows 全平台通用的应用是 windows10 新推出的功能, 可以打通 windows phone windows s FBX SDK 安装配置 访问 FBX 网址 :http://www.autodesk.com/products/fbx/overview, 如下 : 点击 GET FBX SDK 进入 SDK 下载页面 ( 网址为 : http://usa.autodesk.com/adsk/servlet/pc/item?siteid=123112&id=25408427): 在挑选合适的 SDK 的时候需要注意,

More information

http://learning.sohu.com/s2007/07gkzw/ Page 1 of 13 搜 狐 首 页 - 新 闻 - 体 育 - 娱 乐 圈 - 财 经 - IT - 汽 车 - 房 产 - 女 人 - 短 信 - ChinaRen - 邮 件 - 博 客 - BBS - 搜 狗 各 媒 院 地 体 校 关 动 注 态 招 志 07 分 办 愿 数 主 模 线 任 拟 估 填 访

More information

Microsoft Word - Page 004-016.doc

Microsoft Word - Page 004-016.doc 黃 花 崗 歷 史 文 化 季 刊 HUANG HUA GANG 2003 年 第 3 期 總 第 6 期 中 華 民 族 民 族 精 神 喪 失 的 四 個 表 現 大 陸 青 年 學 者 著 三 民 主 義 政 治 五 原 則 中 國 境 內 的 民 族 問 題 從 儒 家 的 當 前 使 命 說 中 國 文 化 的 現 代 意 義 南 京 保 衛 戰 大 陸 學 者 對 國 民 黨 抗 戰 功

More information

C 1

C 1 C homepage: xpzhangme 2018 5 30 C 1 C min(x, y) double C // min c # include # include double min ( double x, double y); int main ( int argc, char * argv []) { double x, y; if( argc!=

More information

untitled

untitled 1 2 3 4 5 6 1 NURBS 3ds max 4 NURBS NURBS NURBS 3 Patch Mesh NURBS NURBS NURBS NURBS 4 NURBS 1.1.1 NURBS NURBS NURBS 3ds max 4 Create 1.1 10 1.1 NURBS 001.max 1 Create Sphere 1.2 2 1.2 2 Modify 3 1 NURBS

More information

Important Notice SUNPLUS TECHNOLOGY CO. reserves the right to change this documentation without prior notice. Information provided by SUNPLUS TECHNOLO

Important Notice SUNPLUS TECHNOLOGY CO. reserves the right to change this documentation without prior notice. Information provided by SUNPLUS TECHNOLO Car DVD New GUI IR Flow User Manual V0.1 Jan 25, 2008 19, Innovation First Road Science Park Hsin-Chu Taiwan 300 R.O.C. Tel: 886-3-578-6005 Fax: 886-3-578-4418 Web: www.sunplus.com Important Notice SUNPLUS

More information

Two analytical 2d line intersection in OpenCASCADE Abstract. OpenCASCADE geometric tools provide algorithms to calculate the intersectio

Two analytical 2d line intersection in OpenCASCADE Abstract. OpenCASCADE geometric tools provide algorithms to calculate the intersectio Two analytical d line intersection in OpenCASCADE eryar@63.com Abstract. OpenCASCADE geometric tools provide algorithms to calculate the intersection of two d curves, surfaces, or a 3d curve and a surface.

More information

Strings

Strings Inheritance Cheng-Chin Chiang Relationships among Classes A 類 別 使 用 B 類 別 學 生 使 用 手 機 傳 遞 訊 息 公 司 使 用 金 庫 儲 存 重 要 文 件 人 類 使 用 交 通 工 具 旅 行 A 類 別 中 有 B 類 別 汽 車 有 輪 子 三 角 形 有 三 個 頂 點 電 腦 內 有 中 央 處 理 單 元 A

More information

Strings

Strings Polymorphism and Virtual Functions Cheng-Chin Chiang Virtual Function Basics 多 型 (Polymorphism) 賦 予 一 個 函 數 多 種 意 涵, 存 在 於 同 一 類 別 之 內 祖 先 類 別 與 後 代 類 別 間 物 件 導 向 程 式 設 計 基 本 原 理 虛 擬 函 數 (Virtual Function)

More information

The golden pins of the PCI card can be oxidized after months or years

The golden pins of the PCI card can be oxidized after months or years Q. 如何在 LabWindows/CVI 編譯 DAQ Card 程式? A: 請參考至下列步驟 : 步驟 1: 安裝驅動程式 1. 安裝 UniDAQ 驅動程式 UniDAQ 驅動程式下載位置 : CD:\NAPDOS\PCI\UniDAQ\DLL\Driver\ ftp://ftp.icpdas.com/pub/cd/iocard/pci/napdos/pci/unidaq/dll/driver/

More information

新 法 评 述 1 关 于 移 动 游 戏 出 版 服 务 管 理 的 通 知 评 述 ( 作 者 : 陈 容 张 艳 冰 ) 2016 年 6 月 2 日, 国 家 新 闻 出 版 广 播 电 影 电 视 总 局 ( 以 下 简 称 广 电 总 局 ) 发 布 关 于 移 动 游 戏 出 版 服

新 法 评 述 1 关 于 移 动 游 戏 出 版 服 务 管 理 的 通 知 评 述 ( 作 者 : 陈 容 张 艳 冰 ) 2016 年 6 月 2 日, 国 家 新 闻 出 版 广 播 电 影 电 视 总 局 ( 以 下 简 称 广 电 总 局 ) 发 布 关 于 移 动 游 戏 出 版 服 2016 年 第 6 期 ( 总 第 111 期 ) 新 法 评 述 1 关 于 移 动 游 戏 出 版 服 务 管 理 的 通 知 评 述 2 汇 发 [2016]16 号 文 进 一 步 推 进 资 本 项 目 结 汇 管 理 的 改 革 3 婴 幼 儿 配 方 乳 粉 产 品 配 方 注 册 管 理 办 法 评 述 新 法 评 述 1 关 于 移 动 游 戏 出 版 服 务 管 理 的 通 知

More information

第7章-并行计算.ppt

第7章-并行计算.ppt EFEP90 10CDMP3 CD t 0 t 0 To pull a bigger wagon, it is easier to add more oxen than to grow a gigantic ox 10t 0 t 0 n p Ts Tp if E(n, p) < 1 p, then T (n) < T (n, p) s p S(n,p) = p : f(x)=sin(cos(x))

More information

目 次 第七期

目      次                第七期 談 情 說 愛 談 情 說 愛 * 李 嘉 峰 還 記 得 你 小 學 時 候 喜 歡 的 那 個 人 嗎? 你 是 不 是 老 喜 歡 捉 弄 他 ( 她 ) 來 吸 引 他 ( 她 ) 的 注 意 ; 還 記 得 你 國 中 喜 歡 的 人 嗎? 是 不 是 只 要 他 ( 她 ) 朝 你 的 方 向 看 過 來, 你 就 會 以 為 他 ( 她 ) 在 看 你 而 臉 紅 心 跳 的 低 下

More information

省政协委员陈志实:知识产权市场化须以法治方式推:大奖娱乐官方网站 进

省政协委员陈志实:知识产权市场化须以法治方式推:大奖娱乐官方网站 进 省 政 协 委 员 陈 志 实 : 知 识 产 权 市 场 化 须 以 法 治 方 式 推 : 大 奖 娱 乐 官 方 网 站 进 www.bouni.net http://www.bouni.net 省 政 协 委 员 陈 志 实 : 知 识 产 权 市 场 化 须 以 法 治 方 式 推 : 大 奖 娱 乐 官 方 网 站 进 原 标 题 : 省 政 协 委 员 陈 志 实 提 交 提 案 建

More information

精 神 與 自 然 : 楊 慈 湖 心 學 研 究 趙 燦 鵬 哲 學 博 士 嶺 南 大 學 二 零 零 五 年

精 神 與 自 然 : 楊 慈 湖 心 學 研 究 趙 燦 鵬 哲 學 博 士 嶺 南 大 學 二 零 零 五 年 Terms of Use The copyright of this thesis is owned by its author. Any reproduction, adaptation, distribution or dissemination of this thesis without express authorization is strictly prohibited. All rights

More information

OOP with Java 通知 Project 4: 4 月 18 日晚 9 点 关于抄袭 没有分数

OOP with Java 通知 Project 4: 4 月 18 日晚 9 点 关于抄袭 没有分数 OOP with Java Yuanbin Wu cs@ecnu OOP with Java 通知 Project 4: 4 月 18 日晚 9 点 关于抄袭 没有分数 复习 类的复用 组合 (composition): has-a 关系 class MyType { public int i; public double d; public char c; public void set(double

More information

<4D6963726F736F667420576F7264202D20BABAC0A4D7A8B5DD20B5DA3635C6DAA3A832303132C4EAB5DA37C6DAA3A9A3A8D6D0CEC4A3A9>

<4D6963726F736F667420576F7264202D20BABAC0A4D7A8B5DD20B5DA3635C6DAA3A832303132C4EAB5DA37C6DAA3A9A3A8D6D0CEC4A3A9> 2012 年 第 7 期 ( 总 第 65 期 ) 专 论 1 外 商 投 资 企 业 A 股 IPO 法 律 规 定 执 行 过 程 中 的 突 破 新 法 评 述 1 外 商 直 接 投 资 人 民 币 结 算 业 务 操 作 进 一 步 细 化 2 中 华 人 民 共 和 国 劳 动 合 同 法 修 正 案 ( 草 案 ) 简 评 3 上 市 公 司 员 工 持 股 计 划 管 理 暂 行 办

More information

OpenCASCADE Root-Finding Algorithm

OpenCASCADE Root-Finding Algorithm OpenCASCADE Root-Finding Algorithm eryar@163.com Abstract. A root-finding algorithm is a numerical method, or algorithm, for finding a value x such that f(x)=0, for a given function f. Such an x is called

More information

B-Spline Curve Library in Open Cascade

B-Spline Curve Library in Open Cascade B-Spline Curve Library in Open Cascade Open Cascade 中的 B 样条曲线库 eryar@163.com 摘要 Abstract: 简要介绍 Open Cascade 中的 B 样条曲线库 BSplCLib 的使用方法, 并且结合源程序来对 Open Cascade 中的 B 样条曲线的组成部分如节点矢量 重复度等概念进行介绍, 以及通过对计算 B 样条基函数的算法进行分析,

More information

How to Debug Tuxedo Server printf( Input data is: %s, inputstr); fprintf(stdout, Input data is %s, inputstr); fprintf(stderr, Input data is %s, inputstr); printf( Return data is: %s, outputstr); tpreturn(tpsuccess,

More information

Visualization of Generic Surface

Visualization of Generic Surface Mesh Algorithm in OpenCascade eryar@163.com Abstract. Rendering a generic surface is a two steps process: first, computing the points that will form the mesh of the surface and then, send this mesh to

More information

6-7 6-8 6-9 Process Data flow Data store External entity 6-10 Context diagram Level 0 diagram Level 1 diagram Level 2 diagram 6-11 6-12

6-7 6-8 6-9 Process Data flow Data store External entity 6-10 Context diagram Level 0 diagram Level 1 diagram Level 2 diagram 6-11 6-12 6-1 6-2 6-3 6-4 6-5 6-6 6-7 6-8 6-9 Process Data flow Data store External entity 6-10 Context diagram Level 0 diagram Level 1 diagram Level 2 diagram 6-11 6-12 6-13 6-14 6-15 6-16 6-17 6-18 6-19 6-20 6-21

More information

Microsoft Word - CVersion201412.doc

Microsoft Word - CVersion201412.doc On Socialistic Society 论 社 会 主 义 社 会 中 文 版 Chinese Version 金 宁 Ning JIN Copyright 2009 by Ning JIN ( 金 宁 ). All right reserved. No part of this book may be used or reproduced, stored in a retrieval system,

More information

17 Prelight Apply Color Paint Vertex Color Tool Prelight Apply Color Paint Vertex Color Tool 242 Apply Color, Prelight Maya Shading Smooth

17 Prelight Apply Color Paint Vertex Color Tool Prelight Apply Color Paint Vertex Color Tool 242 Apply Color, Prelight Maya Shading Smooth 17 Prelight 233 234 242 Apply Color Paint Vertex Color Tool Prelight Apply Color Paint Vertex Color Tool 242 Apply Color, Prelight Maya Shading Smooth Shade All Custom Polygon DisplayOptions Color in Shaded

More information

目 录 1. 概 述... 6 2. 导 航 模 块... 7 2.1. 主 页...7 2.2. 发 现...8 2.3. 分 享...8 2.4. 消 息...9 2.5. 我...9 3. 核 心 功 能... 10 3.1. 注 册 / 登 录... 10 3.1.1. 注 册... 10

目 录 1. 概 述... 6 2. 导 航 模 块... 7 2.1. 主 页...7 2.2. 发 现...8 2.3. 分 享...8 2.4. 消 息...9 2.5. 我...9 3. 核 心 功 能... 10 3.1. 注 册 / 登 录... 10 3.1.1. 注 册... 10 ThinkSNS V4.0 Android 端 使 用 手 册 智 士 软 件 ( 北 京 ) 有 限 公 司 ZhiShiSoft (Beijing) Co,. Ltd. Copyright ZhiShiSoft Co., Ltd. All rights reserved. www.thinksns.com 1 目 录 1. 概 述... 6 2. 导 航 模 块... 7 2.1. 主 页...7

More information

0404.doc

0404.doc 20-4-2004 2 2004-CE 2 0 0 4 1. 40% 30% 2. 3. 4. All Rights Reserved 2004 2004-CE-HIST 1-1 3 1. A A 1862 1871 1848 1849 (a) A (1 ) (b) A A (4 ) (c) A A (5 ) 2004-CE-HIST 1-2 -1-4 2. B B 1902 (a) B B (1+1

More information

“PC通”商业计划书.doc

“PC通”商业计划书.doc 91 Digital Net ( SHANGHHAI ) CO.,LTD. Copyright 91 Digital Net ( SHANGHHAI ) CO.,LTD.. All Rights Reserved. 1 2 / 3 YDJK0412 YDJK001... 4...4...4...5... 6... 6...6...7...7... 7... 8... 8... 8...

More information

目 录 欢 迎 使 用... 1 1. 产 品 介 绍... 2 1.1 产 品 概 述... 2 1.2 产 品 特 点... 2 2. 代 理 商 系 统 使 用 说 明... 3 2.1 登 陆... 3 2.2 基 本 信 息... 4 2.3 分 销 商 管 理... 5 2.4 帐 户

目 录 欢 迎 使 用... 1 1. 产 品 介 绍... 2 1.1 产 品 概 述... 2 1.2 产 品 特 点... 2 2. 代 理 商 系 统 使 用 说 明... 3 2.1 登 陆... 3 2.2 基 本 信 息... 4 2.3 分 销 商 管 理... 5 2.4 帐 户 悠 讯 (telyou) 代 理 商 手 册 (V1.0) 广 阔 网 络 通 信 技 术 有 限 公 司 1 目 录 欢 迎 使 用... 1 1. 产 品 介 绍... 2 1.1 产 品 概 述... 2 1.2 产 品 特 点... 2 2. 代 理 商 系 统 使 用 说 明... 3 2.1 登 陆... 3 2.2 基 本 信 息... 4 2.3 分 销 商 管 理... 5 2.4

More information

江苏省海安职业教育中心

江苏省海安职业教育中心 江 苏 省 海 安 中 等 专 业 学 校 机 械 C A D 校 本 教 材 机 电 专 业 部 目 录 项 目 一 初 识 CAD~~~~~~~~~~~~~~~~~~~~~~~~~(2) 1.1Auto CAD 用 户 界 面 ~~~~~~~~~~~~~~~~~~~~~~(2) 1.2 图 形 文 件 管 理 ~~~~~~~~~~~~~~~~~~~~~~~~(8) 1.3 命 令 输 入 方 式

More information

Move Component Object selection Component selection UV Maya Hotkeys editor Maya USING MAYA POLYGONAL MODELING 55

Move Component Object selection Component selection UV Maya Hotkeys editor Maya USING MAYA POLYGONAL MODELING 55 3 55 62 63 Move Component 63 70 72 73 73 Object selection Component selection UV Maya Hotkeys editor Maya 55 USING MAYA POLYGONAL MODELING Maya: Essentials Maya Essentials F8 Ctrl F9 Vertex/Face F9 F10

More information

,, [8 ] (p. 666),, [8 ] (p. 544), (1643 ), 30,,,,,,,,,,,,,,,,,,,,,,,, [9 ] (),, [8 ] (p. 306),,, [8 ] (p. 1052),, [8 ] (p. 1070),,,,, (1640 ),, [10 ]

,, [8 ] (p. 666),, [8 ] (p. 544), (1643 ), 30,,,,,,,,,,,,,,,,,,,,,,,, [9 ] (),, [8 ] (p. 306),,, [8 ] (p. 1052),, [8 ] (p. 1070),,,,, (1640 ),, [10 ] 2010 1 (219 ) THE NORTHERN FORUM No11, 2010 Total No1219 (, 100871) [ ],,,,,,,,,, [ ] ; ; [] I206 [] A [] 1000-3541 (2010) 01-0065 - 06,, :, : :,,, : :,,,,, :, :,,, [1 ] (),,, (, ),,,,,,,, (1634 ),,,,,

More information

C6_ppt.PDF

C6_ppt.PDF C01-202 1 2 - (Masquerade) (Replay) (Message Modification) (Denial of Service) - ( ) (Eavesdropping) (Traffic Analysis) 8 1 2 7 3 6 5 4 3 - TCP SYN (SYN flood) Smurf Ping of Death LAND Attack Teardrop

More information

cover01.doc

cover01.doc Terms of Use The copyright of this thesis is owned by its author. Any reproduction, adaptation, distribution or dissemination of this thesis without express authorization is strictly prohibited. All rights

More information

untitled

untitled 1 1.1 1.2 1.3 1.4 1.5 ++ 1.6 ++ 2 BNF 3 4 5 6 7 8 1.2 9 1.2 IF ELSE 10 1.2 11 1.2 12 1.3 Ada, Modula-2 Simula Smalltalk-80 C++, Objected Pascal(Delphi), Java, C#, VB.NET C++: C OOPL Java: C++ OOPL C# C++

More information

Microsoft Photo Editor - Cover 1.jpg

Microsoft Photo Editor - Cover 1.jpg 紀 念 黃 花 崗 舉 義 九 十 五 週 年 參 加 黃 花 崗 起 義 的 革 命 新 娘 卓 國 華 冒 著 危 險 安 葬 黃 花 崗 眾 烈 士 的 潘 達 微 一 家 右 二 為 潘 達 微 先 生 1 獻 身 反 袁 復 辟 英 雄 陳 其 美 辛 亥 元 勛 中 華 革 命 黨 領 袖 歷 史 文 化 季 刊 2006 年 第 1 期 總 第 16 期 主 辦 者 中 國 現 代 史

More information

晶体结构立体模型建构软件-Diamond的使用

晶体结构立体模型建构软件-Diamond的使用 -Diamond E-mail: wupingwei@mail.ouc.edu.cn -Diamond Diamond NaCl NaCl NaCl Fm-3m(225) a=5.64å Na:4a, Cl:4b 1 2 3 4 5 6 File New OK Diamond1 New Structure Crystal Structure with cell and Spacegroup Cell

More information

1 目 的 为 维 护 国 内 政 企 市 场 良 好 的 市 场 秩 序, 加 强 对 窜 货 等 重 大 违 规 行 为 的 管 理, 特 在 2016 年 中 兴 通 讯 国 内 政 企 市 场 窜 货 管 理 办 法 基 础 上 制 定 本 管 理 办 法 本 管 理 办 法 适 用 于 中

1 目 的 为 维 护 国 内 政 企 市 场 良 好 的 市 场 秩 序, 加 强 对 窜 货 等 重 大 违 规 行 为 的 管 理, 特 在 2016 年 中 兴 通 讯 国 内 政 企 市 场 窜 货 管 理 办 法 基 础 上 制 定 本 管 理 办 法 本 管 理 办 法 适 用 于 中 中 兴 通 讯 国 内 政 企 市 场 渠 道 伙 伴 窜 货 管 理 办 法 2016 All rights reserved. No distribution without prior permission of ZTE. 1 1 目 的 为 维 护 国 内 政 企 市 场 良 好 的 市 场 秩 序, 加 强 对 窜 货 等 重 大 违 规 行 为 的 管 理, 特 在 2016 年 中 兴

More information

第 1 頁, 共 5 頁 知 識 下 載 專 區 輕 鬆 學 習 三 分 鐘 掌 握 管 理 新 知 見 全 文 >> 電 子 雜 誌 超 體 驗 讓 征 戰 全 球 的 企 業 家, 隨 時 隨 地 與 世 界 接 軌 見 全 文 >> 全 球 企 業 打 造 接 班 猛 將 作 者 : 吳 韻 儀 出 處 : 天 下 雜 誌 第 402 期 2008/07/30 出 刊 儘 管 因 為 景 氣

More information

DAGONG PRESS REVIEW world.people.com.cn 1.7.2013

DAGONG PRESS REVIEW world.people.com.cn 1.7.2013 Pagina 1 di 8 人 民 網 首 頁 賬 號 密 碼 選 擇 去 向 登 錄 注 冊 網 站 地 圖 共 產 黨 新 聞 要 聞 時 政 法 治 國 際 軍 事 台 港 澳 教 育 社 會 圖 片 觀 點 地 方 財 經 汽 車 房 產 體 育 娛 樂 文 化 傳 媒 電 視 社 區 政 務 通 博 客 訪 談 游 戲 彩 信 動 漫 RSS 人 民 網 >> 國 際 >> 滾 動 新 聞

More information