WO2018132989A1 - Segmental arc polygon two-dimensional boolean operating method - Google Patents

Segmental arc polygon two-dimensional boolean operating method Download PDF

Info

Publication number
WO2018132989A1
WO2018132989A1 PCT/CN2017/071640 CN2017071640W WO2018132989A1 WO 2018132989 A1 WO2018132989 A1 WO 2018132989A1 CN 2017071640 W CN2017071640 W CN 2017071640W WO 2018132989 A1 WO2018132989 A1 WO 2018132989A1
Authority
WO
WIPO (PCT)
Prior art keywords
edge
sub
main body
polygon
island
Prior art date
Application number
PCT/CN2017/071640
Other languages
French (fr)
Chinese (zh)
Inventor
蔡熙炫
曾波
刘忠军
刘静
Original Assignee
深圳市百能信息技术有限公司
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by 深圳市百能信息技术有限公司 filed Critical 深圳市百能信息技术有限公司
Priority to PCT/CN2017/071640 priority Critical patent/WO2018132989A1/en
Publication of WO2018132989A1 publication Critical patent/WO2018132989A1/en

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06TIMAGE DATA PROCESSING OR GENERATION, IN GENERAL
    • G06T11/002D [Two Dimensional] image generation

Definitions

  • the invention relates to the technical field of graphic processing, in particular to a two-dimensional Boolean operation method for an arc segment polygon.
  • Two-dimensional Boolean operation is one of the important contents of computational geometry and computer graphics. Its main function and result is that simple graphics can obtain complex graphics after Boolean operations, in many fields such as mechanical part design, architectural graphic design, shipbuilding and so on. There are a wide range of applications. As one of the most commonly used and basic algorithm tools, two-dimensional Boolean operations are also widely used in the PCB circuit board manufacturing industry.
  • the existing two-dimensional Boolean algorithm generally describes the boundary of the graph in the form of "ring".
  • the currently widely used two-dimensional Boolean open source library Clipper is a very sophisticated library of two-dimensional Boolean operations, but it is similar to other similar
  • the two-dimensional Boolean operation library has a common shortcoming, that is, the curve cannot be processed, and the curve needs to be cut into approximate multiple straight line segments before it can be processed. This increases the amount of data and changes the data type, and the processing is complicated.
  • the prior art also uses a three-dimensional Boolean operation library to realize the requirements of two-dimensional Boolean operations, but the three-dimensional library has large capacity, high cost, and high price.
  • the object of the present invention is to design a two-dimensional polygon of a curved section.
  • the Boolean operation method can effectively solve the two-dimensional graphics Boolean operation of the curve type, and the cost is low and the operation is fast.
  • a two-dimensional Boolean operation method for an arc segment polygon comprising:
  • Step S101 sequentially reading the data of the main body A and the main body B, and eliminating the redundant collinear points of the main body A and the main body B;
  • Step S102 calculating data of the islands, holes, and intersections and sub-edges of the main body A and the main body B, and calculating the lowest sub-edge of the island;
  • Step S103 creating a hash mapping relationship between the island and the intersection point of the hole corresponding to itself, and establishing a mapping relationship with the child edge for each intersection point;
  • Step S104 calculating a winding value of each island and a sub-edge of the hole by using an iterative algorithm
  • Step S105 performing a union, a difference set, and an intersection Boolean operation of the subject A and the subject B by the wrap value.
  • the island of the present invention is a closed counterclockwise direction polygon; the hole is a smoothing direction polygon in the island; the intersection point is an interface or intersection point of the two sides of the polygon; The sub-edge is the edge between the two intersections.
  • the hash mapping relationship of the intersection point of the island and the hole corresponding to the self is established according to the present invention, and the mapping relationship between the island and the hole is established for each intersection, and specifically includes:
  • An iterative method is used to establish a mapping relationship between each intersection and a child edge.
  • the method for calculating the winding value of each sub-edge of each island and hole by using an iterative algorithm includes:
  • the initial value of the sub-edge is 0. If the sub-edge is surrounded by a polygon, if the polygon is counterclockwise, then the value of the sub-edge is incremented by one; if the polygon is clockwise, the value of the sub-edge is decremented by one. .
  • the two-dimensional Boolean operation method of the arc segment polygon provided by the invention can solve the Boolean operation of the curve type two-dimensional graphics, and has the advantages of low precision, high efficiency and high efficiency.
  • Figure 1 is a topological definition map of the present invention
  • Figure 2 is a Boolean operation diagram of the present invention
  • FIG. 3 is a flow chart of the present invention.
  • Figure 4 is a flow chart showing the data calculation process of the present invention.
  • Figure 5 is a flow chart of establishing a mapping relationship of the present invention.
  • Figure 6 is a flow chart of numerical calculation of the sub-edge winding of the present invention.
  • Figure 7 is a flow chart showing the calculation results of the present invention.
  • the invention proposes a two-dimensional Boolean operation method for an arc segment polygon, which can solve a two-dimensional graph Boolean operation of a curve class.
  • intersections The intersection of two sides of a polygon and the intersection of two or two sides are collectively called intersections;
  • Edge Edge The edge between two intersections.
  • Each 2D entity must have only one island, and the island can contain multiple holes.
  • the present invention can implement three Boolean operations, a union operation (A ⁇ B), a difference set operation (A-B), and an intersection operation (A ⁇ B).
  • FIG. 3 specifically includes the following steps:
  • step S101 the data of the main body A and the main body B are sequentially read, and the collinear points of the main body A and the main body B are eliminated.
  • Step S102 calculating data of the islands, holes, and intersections and sub-edges of the main body A and the main body B, and calculating the lowest sub-edge of the island.
  • each data of the main body A and the main body B is counted according to the above-mentioned island, hole, and the definition method of the intersection point and the sub-edge corresponding to each island and hole. At the same time, it is necessary to eliminate the extra collinear points of the main body A and the main body B.
  • step S103 a hash mapping relationship between the island and the intersection point corresponding to the hole is created, and a mapping relationship between the island and the sub-edge is established for each intersection.
  • step S104 the winding value of each island and the sub-edge of the hole is calculated by an iterative algorithm.
  • the wrap value is the number of times the sub-edges are surrounded by how many polygons.
  • the initial value of the sub-edge is 0, the winding is a vector, if the edge Edge is surrounded by a polygon Poly, if Poly is counterclockwise, then the number of Edge is +1; if Poly is clockwise, then the number of Edge is -1. Because the sub-edges of each island are surrounded by themselves, the number of turns of the child edges of the independent island is equal to 1. If the independent island contains a hole, then the sub-edge of the hole is surrounded by the island and surrounded by the hole, so the number of word edges of the hole is zero. See Figure 6 for the specific winding calculation process.
  • Step S105 performing a union, a difference set, and an intersection Boolean operation of the subject A and the subject B by the wrap value.
  • the present invention implements three Boolean operations, a union operation (A ⁇ B), a difference set operation (A-B), and an intersection operation (A ⁇ B).
  • Pathfinding for picking results Iterate each island, hole, and start the path from the lowest edge of the island, only the sub-edge that satisfies the Boolean operation picking condition, walk through and set the mark to prevent repeated traversal, when the next one is found The road is gone, which means that the result of the pickup generates a closed loop, and then the search for the sub-edge that has not passed the condition is completed, and all the sub-edges of the loop iteration are iterated before ending.

Abstract

A segmental arc polygon two-dimensional Boolean operating method, comprising: reading the data of a main body A and a main body B sequentially, and removing the excess collinear points of the main body A and the main body B (S101); calculating the islands and holes of the main body A and the main body B as well as the data of the corresponding intersection points and sub-edges of each island and hole, and calculating the lowest sub-edge of the islands (S102); creating a hash mapping relationship between the islands and holes and their corresponding intersection points, and establishing a mapping relationship between each of the intersection points and the sub-edges (S103); calculating the winding number values of the sub-edges of each island and hole by means of an iterative algorithm (S104); and carrying out union, subtraction and intersection Boolean operations on the main body A and the main body B by means of the winding number values (S105). By means of the segmental arc polygon two-dimensional Boolean operating method, the curve-type two-dimensional graph Boolean operation can be effectively solved, the cost is low, and the operation is fast.

Description

一种弧段多边形二维布尔运算方法A two-dimensional Boolean operation method for arc segment polygon 技术领域Technical field
本发明涉及图形处理技术领域,特别涉及一种弧段多边形二维布尔运算方法。The invention relates to the technical field of graphic processing, in particular to a two-dimensional Boolean operation method for an arc segment polygon.
背景技术Background technique
二维布尔运算是计算几何和计算机图形学的重要内容之一,它的主要功能与结果是简单的图形经布尔运算后可以得到复杂图形,在机械零件设计、建筑平面设计、船舶制造等很多领域都有广泛的应用。作为一种最常用、最基础的算法工具,二维布尔运算在PCB电路板制造行业也有着广泛应用。Two-dimensional Boolean operation is one of the important contents of computational geometry and computer graphics. Its main function and result is that simple graphics can obtain complex graphics after Boolean operations, in many fields such as mechanical part design, architectural graphic design, shipbuilding and so on. There are a wide range of applications. As one of the most commonly used and basic algorithm tools, two-dimensional Boolean operations are also widely used in the PCB circuit board manufacturing industry.
现有的二维布尔运算算法一般用“环”的形式描述图形边界,例如目前被广泛应用的二维布尔运算开源库Clipper,是一个非常精致的二维布尔运算的库,但是它和其它同类二维布尔运算库都有共同的缺点,就是不能处理曲线,需要将曲线切割成近似的多段直线段后才能处理。这样既增加了数据量,又改变了数据类型,处理过程复杂。现有技术也有采用三维布尔运算库来实现二维布尔运算需求,但是三维库容量大、成本高、价格昂贵。The existing two-dimensional Boolean algorithm generally describes the boundary of the graph in the form of "ring". For example, the currently widely used two-dimensional Boolean open source library Clipper is a very sophisticated library of two-dimensional Boolean operations, but it is similar to other similar The two-dimensional Boolean operation library has a common shortcoming, that is, the curve cannot be processed, and the curve needs to be cut into approximate multiple straight line segments before it can be processed. This increases the amount of data and changes the data type, and the processing is complicated. The prior art also uses a three-dimensional Boolean operation library to realize the requirements of two-dimensional Boolean operations, but the three-dimensional library has large capacity, high cost, and high price.
发明内容Summary of the invention
针对以上问题,本发明专利目的在于设计了一种弧段多边形二维 布尔运算方法,能有效解决曲线类二维图形布尔运算,成本低、运算快。In view of the above problems, the object of the present invention is to design a two-dimensional polygon of a curved section. The Boolean operation method can effectively solve the two-dimensional graphics Boolean operation of the curve type, and the cost is low and the operation is fast.
本发明具体的技术方案如下:The specific technical solution of the present invention is as follows:
一种弧段多边形二维布尔运算方法,包括:A two-dimensional Boolean operation method for an arc segment polygon, comprising:
步骤S101,依次读入主体A和主体B的数据,剔除主体A和主体B多余的共线点;Step S101, sequentially reading the data of the main body A and the main body B, and eliminating the redundant collinear points of the main body A and the main body B;
步骤S102,计算主体A和主体B的岛、洞,以及每个岛、洞对应的交点和子边的数据,并计算岛的最低子边;Step S102, calculating data of the islands, holes, and intersections and sub-edges of the main body A and the main body B, and calculating the lowest sub-edge of the island;
步骤S103,创建岛和洞与自身对应的交点的哈希映射关系,为每个交点建立其与子边的映射关系;Step S103, creating a hash mapping relationship between the island and the intersection point of the hole corresponding to itself, and establishing a mapping relationship with the child edge for each intersection point;
步骤S104,通过迭代算法计算每个岛和洞的子边的绕数值;Step S104, calculating a winding value of each island and a sub-edge of the hole by using an iterative algorithm;
步骤S105,通过所述绕数值进行主体A和主体B的并集、差集、交集布尔运算。Step S105, performing a union, a difference set, and an intersection Boolean operation of the subject A and the subject B by the wrap value.
具体的,本发明所述岛为封闭逆时针方向走向多边形;所述洞为所述岛内的顺顺时针方向多边形;所述交点为所述多边形两两边段的衔接点或相交点;所述子边为两个所述交点间的边段。Specifically, the island of the present invention is a closed counterclockwise direction polygon; the hole is a smoothing direction polygon in the island; the intersection point is an interface or intersection point of the two sides of the polygon; The sub-edge is the edge between the two intersections.
具体的,本发明所述创建岛和洞与自身对应的交点的哈希映射关系,为每个交点建立其与子边的映射关系,具体包括:Specifically, the hash mapping relationship of the intersection point of the island and the hole corresponding to the self is established according to the present invention, and the mapping relationship between the island and the hole is established for each intersection, and specifically includes:
使用迭代法建立每个交点与子边的映射关系。An iterative method is used to establish a mapping relationship between each intersection and a child edge.
具体的,本发明所述通过迭代算法计算每个岛和洞的子边的绕数值,具体包括:Specifically, the method for calculating the winding value of each sub-edge of each island and hole by using an iterative algorithm includes:
定义绕数值为子边被多边形环绕的次数; Define the rounding value as the number of times the child edge is surrounded by the polygon;
子边的绕数初始值为0,若子边被某多边形环绕,如果所述多边形是逆时针,那么子边的绕数值加1;如果所述多边形是顺时针,那么子边的绕数值减1。The initial value of the sub-edge is 0. If the sub-edge is surrounded by a polygon, if the polygon is counterclockwise, then the value of the sub-edge is incremented by one; if the polygon is clockwise, the value of the sub-edge is decremented by one. .
本发明提供的弧段多边形二维布尔运算方法与现有技术相比,能解决曲线类二维图形布尔运算,且精小成本低,运算强大高效。Compared with the prior art, the two-dimensional Boolean operation method of the arc segment polygon provided by the invention can solve the Boolean operation of the curve type two-dimensional graphics, and has the advantages of low precision, high efficiency and high efficiency.
附图说明DRAWINGS
以下参照附图对本发明实施例作进一步说明,其中:The embodiments of the present invention are further described below with reference to the accompanying drawings, wherein:
图1是本发明的拓扑定义图;Figure 1 is a topological definition map of the present invention;
图2是本发明的布尔运算图;Figure 2 is a Boolean operation diagram of the present invention;
图3是本发明的流程图;Figure 3 is a flow chart of the present invention;
图4是本发明的数据计算处理流程图;Figure 4 is a flow chart showing the data calculation process of the present invention;
图5是本发明的建立映射关系流程图;Figure 5 is a flow chart of establishing a mapping relationship of the present invention;
图6是本发明的子边绕数值计算流程图;Figure 6 is a flow chart of numerical calculation of the sub-edge winding of the present invention;
图7是本发明的计算结果流程图。Figure 7 is a flow chart showing the calculation results of the present invention.
具体实施方式detailed description
下面结合附图和具体实施例对本发明作进一步的详细说明。The invention will be further described in detail below with reference to the drawings and specific embodiments.
本发明提出了一种弧段多边形二维布尔运算方法,能解决曲线类二维图形布尔运算。 The invention proposes a two-dimensional Boolean operation method for an arc segment polygon, which can solve a two-dimensional graph Boolean operation of a curve class.
请参阅图1,相关的拓扑定义如下:Referring to Figure 1, the relevant topology is defined as follows:
岛Island:封闭逆时针方向走向多边形;Island: Close to the polygon in a counterclockwise direction;
洞Hole:岛内的顺顺时针方向多边形;Hole: the smoothing polygon in the island;
交点Interaction:多边形两两边段的衔接点及两两边段的相交点统称交点;Interaction: The intersection of two sides of a polygon and the intersection of two or two sides are collectively called intersections;
子边Edge:两交点间的边段。Edge Edge: The edge between two intersections.
每个二维实体必须有仅有一个岛,岛内可包含多个洞。Each 2D entity must have only one island, and the island can contain multiple holes.
请参阅图2,本发可实现三种布尔运算操作,并集操作(A∪B),差集操作(A-B),交集操作(A∩B)。Referring to FIG. 2, the present invention can implement three Boolean operations, a union operation (A∪B), a difference set operation (A-B), and an intersection operation (A∩B).
请参阅图3,具体包括如下步骤:Please refer to FIG. 3, which specifically includes the following steps:
步骤S101,依次读入主体A和主体B的数据,剔除主体A和主体B多余的共线点。In step S101, the data of the main body A and the main body B are sequentially read, and the collinear points of the main body A and the main body B are eliminated.
步骤S102,计算主体A和主体B的岛、洞,以及每个岛、洞对应的交点和子边的数据,并计算岛的最低子边。Step S102, calculating data of the islands, holes, and intersections and sub-edges of the main body A and the main body B, and calculating the lowest sub-edge of the island.
具体的,请参见图4,按照上述岛、洞,以及每个岛、洞对应的交点和子边的定义方法,统计出主体A和主体B的各个数据。同时要剔除主体A和主体B多余的共线点。Specifically, referring to FIG. 4, each data of the main body A and the main body B is counted according to the above-mentioned island, hole, and the definition method of the intersection point and the sub-edge corresponding to each island and hole. At the same time, it is necessary to eliminate the extra collinear points of the main body A and the main body B.
步骤S103,创建岛和洞与自身对应的交点的哈希映射关系,为每个交点建立其与子边的映射关系。In step S103, a hash mapping relationship between the island and the intersection point corresponding to the hole is created, and a mapping relationship between the island and the sub-edge is established for each intersection.
具体的,使用迭代法建立每个交点与子边的映射关系,具体处理方式请参阅图5。 Specifically, an iterative method is used to establish a mapping relationship between each intersection and a sub-edge. For details, see Figure 5.
步骤S104,通过迭代算法计算每个岛和洞的子边的绕数值。In step S104, the winding value of each island and the sub-edge of the hole is calculated by an iterative algorithm.
具体的,绕数值为各子边被多少个多边形环绕的次数。子边的绕数初始值为0,绕数是个矢量,假如子边Edge被一个多边形Poly环绕,如果Poly是逆时针,那么Edge的绕数+1;如果Poly是顺时针,那么Edge的绕数-1。因为每个岛的子边都被自身环绕,所以独立岛的子边的绕数都等于1。而如果独立岛中包含洞的话,那么其洞的子边既被岛环绕又被洞环绕,所以洞的字边绕数为0。具体的绕数值计算流程请参阅图6。Specifically, the wrap value is the number of times the sub-edges are surrounded by how many polygons. The initial value of the sub-edge is 0, the winding is a vector, if the edge Edge is surrounded by a polygon Poly, if Poly is counterclockwise, then the number of Edge is +1; if Poly is clockwise, then the number of Edge is -1. Because the sub-edges of each island are surrounded by themselves, the number of turns of the child edges of the independent island is equal to 1. If the independent island contains a hole, then the sub-edge of the hole is surrounded by the island and surrounded by the hole, so the number of word edges of the hole is zero. See Figure 6 for the specific winding calculation process.
步骤S105,通过所述绕数值进行主体A和主体B的并集、差集、交集布尔运算。Step S105, performing a union, a difference set, and an intersection Boolean operation of the subject A and the subject B by the wrap value.
具体的,本发明实现了三种布尔运算操作,并集操作(A∪B),差集操作(A-B),交集操作(A∩B)。Specifically, the present invention implements three Boolean operations, a union operation (A∪B), a difference set operation (A-B), and an intersection operation (A∩B).
请参阅图7,通过所述绕数值进行主体A和主体B的并集、差集、交集布尔运算策略是可以各子边绕数值很容易总结出来的,其本身是布尔运算几何规则转化为绕数代数的表现形式。Referring to FIG. 7, the union, difference, and intersection Boolean operations of the subject A and the subject B by the wrap value are easily summarized by the values of the sub-edges, and the boolean geometric rules are converted into wraps. The manifestation of several algebras.
拾取结果边的寻路:迭代每个岛、洞,从该岛,洞最低边开始寻路,只走满足布尔运算拾取条件的子边,走过并设置经过标记防止重复遍历,当发现下一条路是走过了的,意味着拾取结果生成一个闭环,接着寻找未走过得符合条件子边,循环迭代所有的子边都迭代过才结束。Pathfinding for picking results: Iterate each island, hole, and start the path from the lowest edge of the island, only the sub-edge that satisfies the Boolean operation picking condition, walk through and set the mark to prevent repeated traversal, when the next one is found The road is gone, which means that the result of the pickup generates a closed loop, and then the search for the sub-edge that has not passed the condition is completed, and all the sub-edges of the loop iteration are iterated before ending.
所有得出的新的洞(顺时针多边形)需要重新寻找其归属岛。对新的岛洞做规范化。 All new holes (clockwise polygons) need to be re-find for their belonging island. Standardize the new island hole.
以上所述本发明的具体实施方式,并不构成对本发明保护范围的限定。任何根据本发明的技术构思所做出的各种其他相应的改变与变形,均应包含在本发明权利要求的保护范围内。 The specific embodiments of the invention described above are not intended to limit the scope of the invention. Any other various changes and modifications made in accordance with the technical idea of the present invention are intended to be included within the scope of the appended claims.

Claims (4)

  1. 一种弧段多边形二维布尔运算方法,其特征在于,包括:An arc segment polygon two-dimensional Boolean operation method, comprising:
    步骤S101,依次读入主体A和主体B的数据,剔除主体A和主体B多余的共线点;Step S101, sequentially reading the data of the main body A and the main body B, and eliminating the redundant collinear points of the main body A and the main body B;
    步骤S102,计算主体A和主体B的岛、洞,以及每个岛、洞对应的交点和子边的数据,并计算岛的最低子边;Step S102, calculating data of the islands, holes, and intersections and sub-edges of the main body A and the main body B, and calculating the lowest sub-edge of the island;
    步骤S103,创建岛和洞与自身对应的交点的哈希映射关系,为每个交点建立其与子边的映射关系;Step S103, creating a hash mapping relationship between the island and the intersection point of the hole corresponding to itself, and establishing a mapping relationship with the child edge for each intersection point;
    步骤S104,通过迭代算法计算每个岛和洞的子边的绕数值;Step S104, calculating a winding value of each island and a sub-edge of the hole by using an iterative algorithm;
    步骤S105,通过所述绕数值进行主体A和主体B的并集、差集、交集布尔运算。Step S105, performing a union, a difference set, and an intersection Boolean operation of the subject A and the subject B by the wrap value.
  2. 根据权利要求1所述的一种弧段多边形二维布尔运算方法,其特征在于,所述岛为封闭逆时针方向走向多边形;所述洞为所述岛内的顺顺时针方向多边形;所述交点为所述多边形两两边段的衔接点或相交点;所述子边为两个所述交点间的边段。The arc segment polygon two-dimensional Boolean operation method according to claim 1, wherein the island is a closed counterclockwise direction polygon; the hole is a smooth clockwise polygon in the island; The intersection point is the junction or intersection point of the two sides of the polygon; the sub-edge is the edge between the two intersections.
  3. 根据权利要求2所述的一种弧段多边形二维布尔运算方法,其特征在于,所述创建岛和洞与自身对应的交点的哈希映射关系,为每个交点建立其与子边的映射关系,具体包括:The arc segment polygon two-dimensional Boolean operation method according to claim 2, wherein the hash mapping relationship between the island and the intersection point corresponding to the hole is created, and the mapping between the sub-edge and the sub-edge is established for each intersection. Relationships, including:
    使用迭代法建立每个交点与子边的映射关系。An iterative method is used to establish a mapping relationship between each intersection and a child edge.
  4. 根据权利要求1所述的一种弧段多边形二维布尔运算方法,其特征在于,所述通过迭代算法计算每个岛和洞的子边的绕数值,具体包括:The two-dimensional Boolean operation method of the arc segment polygon according to claim 1, wherein the calculation of the winding value of the sub-edge of each island and the hole by the iterative algorithm comprises:
    定义绕数值为子边被多边形环绕的次数; Define the rounding value as the number of times the child edge is surrounded by the polygon;
    子边的绕数初始值为0,若子边被某多边形环绕,如果所述多边形是逆时针,那么子边的绕数值加1;如果所述多边形是顺时针,那么子边的绕数值减1。 The initial value of the sub-edge is 0. If the sub-edge is surrounded by a polygon, if the polygon is counterclockwise, then the value of the sub-edge is incremented by one; if the polygon is clockwise, the value of the sub-edge is decremented by one. .
PCT/CN2017/071640 2017-01-19 2017-01-19 Segmental arc polygon two-dimensional boolean operating method WO2018132989A1 (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
PCT/CN2017/071640 WO2018132989A1 (en) 2017-01-19 2017-01-19 Segmental arc polygon two-dimensional boolean operating method

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
PCT/CN2017/071640 WO2018132989A1 (en) 2017-01-19 2017-01-19 Segmental arc polygon two-dimensional boolean operating method

Publications (1)

Publication Number Publication Date
WO2018132989A1 true WO2018132989A1 (en) 2018-07-26

Family

ID=62907514

Family Applications (1)

Application Number Title Priority Date Filing Date
PCT/CN2017/071640 WO2018132989A1 (en) 2017-01-19 2017-01-19 Segmental arc polygon two-dimensional boolean operating method

Country Status (1)

Country Link
WO (1) WO2018132989A1 (en)

Citations (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20040001060A1 (en) * 2002-07-01 2004-01-01 Silicon Graphics, Inc. Accurate boolean operations for subdivision surfaces and relaxed fitting
CN102662915A (en) * 2012-03-01 2012-09-12 成都鹏业软件股份有限公司 Three dimensional Boolean calculating method for quantity survey in construction
CN102663789A (en) * 2012-04-19 2012-09-12 上海巨唐信息科技有限公司 Method for performing triangularization on polygon containing holes and islands in two-dimensional plane
CN104134236A (en) * 2014-07-30 2014-11-05 西安电子科技大学 Boolean operation method of three-dimensional planar solids
CN106898028A (en) * 2017-01-18 2017-06-27 深圳市百能信息技术有限公司 A kind of segmental arc polygon two dimension boolean operation method

Patent Citations (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20040001060A1 (en) * 2002-07-01 2004-01-01 Silicon Graphics, Inc. Accurate boolean operations for subdivision surfaces and relaxed fitting
CN102662915A (en) * 2012-03-01 2012-09-12 成都鹏业软件股份有限公司 Three dimensional Boolean calculating method for quantity survey in construction
CN102663789A (en) * 2012-04-19 2012-09-12 上海巨唐信息科技有限公司 Method for performing triangularization on polygon containing holes and islands in two-dimensional plane
CN104134236A (en) * 2014-07-30 2014-11-05 西安电子科技大学 Boolean operation method of three-dimensional planar solids
CN106898028A (en) * 2017-01-18 2017-06-27 深圳市百能信息技术有限公司 A kind of segmental arc polygon two dimension boolean operation method

Non-Patent Citations (1)

* Cited by examiner, † Cited by third party
Title
XIE, BUYING ET AL.: "The Boolean Operation for 2D Figure with Segment-based Method and Linked-list Method", JOURNAL OF ENGINEERING GRAPHICS, 30 June 2003 (2003-06-30), pages 80 - 83 *

Similar Documents

Publication Publication Date Title
CN101739494B (en) The method on the border of modeling object is calculated in computer aided design system
Panozzo et al. Weighted averages on surfaces
Sharp et al. You can find geodesic paths in triangle meshes by just flipping edges
CN106959669B (en) Notch detection
KR101760795B1 (en) Method, system and computer program product of checking an integrated circuit layout for instances of a reference pattern
Yeh et al. UMAPRM: Uniformly sampling the medial axis
Ramanathan et al. Interior Medial Axis Transform computation of 3D objects bound by free-form surfaces
Viertel et al. Coarse quad layouts through robust simplification of cross field separatrix partitions
Yao et al. Shape estimation for elongated deformable object using B-spline chained multiple random matrices model
US20060150130A1 (en) Integrated circuit yield enhancement using voronoi diagrams
US10108172B2 (en) Spiral toolpaths for high-speed machining of polygonal pockets
CN107562779B (en) Spatial topology processing method for two-dimensional vector polygon self-intersection
Plaku et al. Clearance-driven motion planning for mobile robots with differential constraints
WO2018132989A1 (en) Segmental arc polygon two-dimensional boolean operating method
Li et al. A geometric strategy algorithm for orthogonal projection onto a parametric surface
Bashir et al. Data visualization using rational trigonometric spline
Su et al. Discrete calabi flow: A unified conformal parameterization method
CN106898028A (en) A kind of segmental arc polygon two dimension boolean operation method
Abdel-All et al. Numerical treatment of geodesic differential
Vršek et al. Reducibility of offsets to algebraic curves
Bose et al. Positional encoding by robots with non-rigid movements
CN105389851A (en) Loop subdivision implementation method based on unified adjustment of vertices and new edge points
JP6026949B2 (en) Curved surface drawing apparatus and curved surface drawing program
Podkorytov et al. Joining primal/dual subdivision surfaces
Sinyukov et al. CWave: High-performance single-source any-angle path planning on a grid

Legal Events

Date Code Title Description
121 Ep: the epo has been informed by wipo that ep was designated in this application

Ref document number: 17892946

Country of ref document: EP

Kind code of ref document: A1

NENP Non-entry into the national phase

Ref country code: DE

32PN Ep: public notification in the ep bulletin as address of the adressee cannot be established

Free format text: NOTING OF LOSS OF RIGHTS PURSUANT TO RULE 112(1) EPC (EPO FORM 1205A DATED 30.10.2019)

122 Ep: pct application non-entry in european phase

Ref document number: 17892946

Country of ref document: EP

Kind code of ref document: A1