博客
关于我
读《An Adaptable and Extensible Geometry Kernel》
阅读量:439 次
发布时间:2019-03-06

本文共 3229 字,大约阅读时间需要 10 分钟。

读《An Adaptable and Extensible Geometry Kernel》

利用Curiously Recurring Template Pattern替代虚函数

本文将详细探讨几何内核(Kernel)的设计与实现,重点分析其如何通过模板编程提升几何算法的适配性与可扩展性。

为什么需要Kernel

几何内核(Kernel)旨在解决代码适配性和可扩展性问题。传统的几何算法通常依赖于特定的几何类型(如点、线、多边形等),其实现难以适应不同几何问题的需求。几何内核通过将几何类型与算法操作进行抽象与封装,为用户提供一致的接口,从而降低了代码的耦合度。

Kernel的概念与架构

几何内核的核心概念是将几何类型和相关算法操作封装到一个统一的框架中。其典型架构包括三层:几何原语(Geometric Primitives),数值原语(Numeric Primitives),以及几何内核本身(Kernel)。

几何内核通过提供一系列预定义的操作对象(如Point_2、Line_2、Construct_line_2、Less_xy_2等),用户可以通过这些对象轻松构建和操作几何对象。例如:

K::Point_2 p(0, 1), q(1, -4);K::Line_2 line = K::Construct_line_2()(p, q);if (K::Less_xy_2()(p, q)) {    // 处理逻辑}

Kernel的实现

几何内核的实现可以分为多个版本,逐步优化其结构和功能。

第一版本

template 
struct MyPoint { };template
struct MyLine { };template
struct MyConstruct { };template
struct MyLess { };struct Kernel { typedef MyPoint
Point_2; typedef MyLine
Line_2; typedef MyConstruct
Construct_line_2; typedef MyLess
Less_xy_2;};

第二版本

为了解决依赖关系和循环引用的问题,引入了Kernel_base作为基础接口:

template 
struct MyPoint { };template
struct MyLine { };template
struct MyConstruct { };template
struct MyLess { };template
struct Kernel_base { typedef MyPoint
Point_2; typedef MyLine
Line_2; typedef MyConstruct
Construct_line_2; typedef MyLess
Less_xy_2;};struct Kernel : public Kernel_base
{ };

第三版本

进一步优化,通过函数对象的方式实现操作逻辑:

template 
struct MyPoint { };template
struct MyLine { };template
struct MyConstruct { typedef k::Line_2 Line_2; typedef k::Point_2 Point_2; Line_2 operator()(Point_2, Point_2) const { return Line_2(); }};template
struct MyLess { typedef k::Point_2 Point_2; bool operator()(Point_2, Point_2) const { return true; }};template
struct Kernel_base { typedef MyPoint
Point_2; typedef MyLine
Line_2; typedef MyConstruct
Construct_line_2; typedef MyLess
Less_xy_2; static Construct_line_2 construct_line_2_object(); static Less_xy_2 less_xy_2_object();};

Kernel的使用示例

以2D点集凸包计算为例,展示Kernel的实际应用:

template 
OutputIterator ch_graham_andrew(InputIterator first, InputIterator last, OutputIterator result) { // 使用Kernel进行具体实现 return ch_graham_andrew(first, last, result, Kernel());}

简单的完整Kernel

以下是几何内核的完整实现示例:

template 
FT determinant2x2(FT a00, FT a01, FT a10, FT a11) { return a00 * a11 - a10 * a01;}template
void line_from_pointsC2(ft px, ft py, ft qx, ft qy, ft &a, ft &b, ft &c) {}template
struct Point_2 { typedef k_ K; typedef ft_ FT; Point_2(ft x_, ft y_) : x(x_), y(y_) {} ft x, y;};template
struct Line_2 { typedef k_ K; typedef Point_2
Point_2; Line_2(Point_2 p, Point_2 q) { *this = K::Construct_line_2()(p, q); } ft a, b, c;};template
struct Kernel_bae : public Kernel_base
{ static Point_2 Point_2; static Line_2 Line_2; static Segment_2 Segment_2; static Less_xy_2 Less_xy_2; static Left_turn_2 Left_turn_2; static Construct_line_2 Construct_line_2;};

参考

[1] 《An Adaptable and Extensible Geometry Kernel》

转载地址:http://ykvuz.baihongyu.com/

你可能感兴趣的文章
python办公自动化基础输出文件和文件夹
查看>>
python办公自动化基础搜索文件
查看>>
python知识:@classmethod和@staticmethod的异同
查看>>
python前端之css
查看>>
Python制作进度条,原来有这么多方法
查看>>
Python制作简单的学生成绩管理系统
查看>>
python制作甘特图的基本知识(附Demo)
查看>>
python制作一个简单的服务器,【Python】 做一个简单的 http 服务器
查看>>
Python到底能做什么?它的优点在哪?
查看>>
python利用pytorch库导出图像分割算子
查看>>
python利用pyshark监听网卡来抓包其中pyshark中摸索的一些可用参数
查看>>
python利用excel分析过杀漏失
查看>>
python判断汉字数目
查看>>
python判断文件是空的,如果是空的,就删除
查看>>
python判断密码是否正确_python密码判断是否符合要求的方法
查看>>
python判断字符串包含中文_Python 判断字符串是否包含中文
查看>>
python删除第一行_Python 乱码指北:一行删掉根目录
查看>>
Python删除列表元素的三种方法
查看>>
python初步学习-python数据类型-集合(set)
查看>>
python列表生成字典_Python中将字典转换为列表的方法
查看>>