CN110544284B - Method for automatically planning optimal layout flow chart - Google Patents

Method for automatically planning optimal layout flow chart Download PDF

Info

Publication number
CN110544284B
CN110544284B CN201910846790.8A CN201910846790A CN110544284B CN 110544284 B CN110544284 B CN 110544284B CN 201910846790 A CN201910846790 A CN 201910846790A CN 110544284 B CN110544284 B CN 110544284B
Authority
CN
China
Prior art keywords
node
nodes
height
width
axis
Prior art date
Legal status (The legal status 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 status listed.)
Active
Application number
CN201910846790.8A
Other languages
Chinese (zh)
Other versions
CN110544284A (en
Inventor
王炜
王文武
邓金祥
代先勇
刘洋
谷峰
曾海刚
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Chengdu Fengwei Technology Co ltd
Original Assignee
Chengdu Fengwei Technology Co ltd
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 Chengdu Fengwei Technology Co ltd filed Critical Chengdu Fengwei Technology Co ltd
Priority to CN201910846790.8A priority Critical patent/CN110544284B/en
Publication of CN110544284A publication Critical patent/CN110544284A/en
Application granted granted Critical
Publication of CN110544284B publication Critical patent/CN110544284B/en
Active legal-status Critical Current
Anticipated expiration legal-status Critical

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06TIMAGE DATA PROCESSING OR GENERATION, IN GENERAL
    • G06T11/002D [Two Dimensional] image generation
    • YGENERAL TAGGING OF NEW TECHNOLOGICAL DEVELOPMENTS; GENERAL TAGGING OF CROSS-SECTIONAL TECHNOLOGIES SPANNING OVER SEVERAL SECTIONS OF THE IPC; TECHNICAL SUBJECTS COVERED BY FORMER USPC CROSS-REFERENCE ART COLLECTIONS [XRACs] AND DIGESTS
    • Y02TECHNOLOGIES OR APPLICATIONS FOR MITIGATION OR ADAPTATION AGAINST CLIMATE CHANGE
    • Y02PCLIMATE CHANGE MITIGATION TECHNOLOGIES IN THE PRODUCTION OR PROCESSING OF GOODS
    • Y02P90/00Enabling technologies with a potential contribution to greenhouse gas [GHG] emissions mitigation
    • Y02P90/30Computing systems specially adapted for manufacturing

Landscapes

  • Physics & Mathematics (AREA)
  • General Physics & Mathematics (AREA)
  • Engineering & Computer Science (AREA)
  • Theoretical Computer Science (AREA)
  • User Interface Of Digital Computer (AREA)
  • Processing Or Creating Images (AREA)

Abstract

The invention discloses a method for automatically planning an optimal layout flow chart, which can be called at any stage of user configuration, after calling, workflow nodes on an interface can be automatically arranged according to the self-adaptive size of the node name content, the sequence of adding the workflow nodes by a user is from left to right and from top to bottom, parent-child relationship is embodied by automatic line changing, the logical relationship in front of each workflow node can be seen at a glance, and connecting lines among the workflow nodes are calculated by a method, so that the situation of crossing the workflow nodes is avoided.

Description

Method for automatically planning optimal layout flow chart
Technical Field
The invention relates to the technical field of flow chart layout, in particular to a method for automatically planning an optimal layout flow chart.
Background
With the development of graphical technology, people tend to replace original lengthy plain text descriptions with relatively intuitive flow charts or model diagrams when expressing their own ideas or describing a complicated business logic. Therefore, the problem description itself can become vivid and interesting, and the method is also beneficial to reflecting the thinking flow of the author itself and the association relationship among all the sub-modules. However, when the workflow is edited by using the existing workflow development tool, a lot of time is often consumed for the adjustment of the workflow node layout and the connecting lines, and due to the randomness of manually dragging the workflow nodes, the situations of workflow node overlapping, connecting line overlapping, crossing and even crossing the workflow nodes often occur, so that the extra work of the user is greatly increased by processing the abnormal situations, and the work efficiency of the user is seriously reduced.
In order to solve the above problems, the inventor has developed a method for automatically planning an optimal layout flowchart.
Disclosure of Invention
The present invention is directed to a method for automatically planning an optimal layout flowchart in order to solve the above problems.
The invention achieves the above purpose through the following technical scheme:
a method for automatically planning an optimal layout flowchart is characterized by comprising the following steps:
the method comprises the following steps: setting the maximum width or height of a workflow node, and setting the interval width and height of the node;
step two: acquiring all configured workflow nodes in the current workflow tool, wherein the configured workflow nodes comprise parent-child relationships among the nodes;
step three: traversing all workflow nodes, acquiring each node name, then acquiring the pixel length and the pixel height which are completely needed to be displayed under the condition that the node names are not subjected to line feed, and finally obtaining the maximum value of the length and the height;
step four: acquiring the width and height of a node during automatic layout;
step five: constructing a virtual two-dimensional coordinate grid, wherein the grid is divided into an X axis and a Y axis and is arranged from top to bottom and from left to right, each scale of the X axis represents one column, the width of an odd column is the width of a node obtained in step four, the width of an even column is the width of a space between nodes set by a user in step one, each scale of the Y axis represents one row of the layout, the height of an odd row is the height of the node obtained in step four, and the height of an even row is the height of the space between the nodes set by the user in step one;
step six: using a top-down recursion mode to take out the workflow nodes obtained in the second step one by one;
step seven: after the sixth step is completed, all the workflow nodes have the x and y coordinates of the workflow nodes in the virtual two-dimensional coordinate network, and the placing positions of the nodes in the canvas are obtained through calculation;
step eight: drawing all the workflow nodes into the canvas and displaying by using the pixel positions of the workflow nodes relative to the canvas obtained in the step seven and the pixel sizes of the workflow nodes obtained in the step four;
step nine: all workflow nodes are recursed using a top-down recursion approach and connected two by two using polylines with arrows.
Specifically, in step four:
(1) If the user sets the maximum width, firstly judging whether the maximum width is larger than the maximum length obtained in the third step, if so, using the maximum length in the third step as the node width when in automatic layout, and if so, using the maximum length set by the user as the node width, wherein the node height = the maximum length obtained in the third step divided by the node width;
(2) If the user sets a height value, then node length = length maximum found in step three ÷ (node height ÷ height maximum found in step three), and the remainder rounding is used in the calculation.
Specifically, in the sixth step:
(1) Judging whether the node has a father node or not, if no father node indicates that the front node is a top node, firstly adding two rows and two columns in the virtual two-dimensional coordinate network, and then placing the node into the first row and the first column which are newly added;
(2) Judging whether the node has a father node, firstly finding out the coordinates (x, y) of the father node and calculating to obtain the coordinates (x +2, y) of the current node, secondly judging whether the coordinates (x + 2) exist in the virtual two-dimensional coordinate system, and if not, establishing x-axis coordinates of two columns of the two columns until the current node can be put in;
(3) Judging that the node has two or more father nodes, firstly obtaining the father node (X1, y 1) with the maximum X-axis value by traversing the father nodes, secondly adding two rows of y1+1 and y1+2 at the position below the y1 in the virtual two-dimensional coordinate system, calculating again to obtain the coordinates (X1 +2, y1+ 2) of the current node, judging again whether the X1+2 coordinates exist in the virtual two-dimensional coordinate system, if not, establishing the X-axis coordinates of the two rows until the current node can be put in, finally traversing all the nodes already put in the virtual two-dimensional coordinate system, judging whether the y-axis coordinate of the node is larger than y1, if not, not changing, if so, updating the y-axis coordinate of the node to be the original y-axis value +2;
specifically, in the seventh step: pixel position on top of the node relative to the top of the canvas = (node y-axis coordinate ÷ 2) × (node height + spacing height between nodes), pixel position on left side of the node relative to the canvas = (node x-axis coordinate ÷ 2) × (node width + spacing width between nodes).
Specifically, in the ninth step:
(1) Calculating the coordinates (x, y) of the starting position of the polyline relative to the canvas; x = (pixel position to the left of the node relative to the canvas + parent node width), y = pixel position at the top of the parent node relative to the top of the canvas + parent node height ÷ 2;
(2) Calculating coordinates (x, y) of the end position of the polyline relative to the canvas; x = (pixel position to the left of the canvas on the left side of the child node + child node width), y = pixel position to the top of the canvas + child node height ÷ 2 at the top of the child node;
(3) If the parent node and the child node are not in the same row, coordinates (x 1, y 1) and (x 2, y 2) of two turning points of the broken line relative to the canvas need to be calculated, wherein (x 1, y 1) represents the turning point in the same row with the parent node, and (x 2, y 2) represents the turning point in the same row with the child node;
(4) To obtain two turning points of (X1, y 1) and (X2, y 2), firstly, obtaining an X-axis median point coordinate between a parent node and a child node, wherein the median point X-axis coordinate = (child node X-axis coordinate-parent node X-axis coordinate) ÷ 2, wherein y1= y of the parent node, and y2= y of the child node;
(5) Each time +2 is started from the x-axis coordinate of the father node, the x-axis coordinate of the next horizontal node is obtained until the x-axis coordinate of the middle point is obtained, and each time the x-axis coordinate is obtained, the y-axis coordinate of the next vertical node is also required to be obtained from the y-axis coordinate of the father node for each time +2 until the y-axis coordinate of the child node is obtained, so that a vertical coordinate range is obtained;
(6) Judging whether other points exist in the vertical coordinate range, if so, the current x-1 is the x-axis coordinate of the turning point, if not, the step (5) is continuously executed until the last vertical coordinate range is obtained, and then the x-axis coordinate of the turning point is the x-1 of the last vertical coordinate range;
(7) And (4) after obtaining the complete coordinate points of the connecting line through the steps (3), (4), (5) and (6), connecting the points to draw a broken line, and drawing a rightward arrow at the last point to represent the direction of the connecting line.
The invention has the beneficial effects that:
1. the size of the workflow nodes in the layout is self-adaptive according to the display content of all the nodes.
2. The workflow nodes are not overlapped and covered, the relative distances are uniform, and the layout is attractive.
3. And automatically generating a connecting line according to the parent-child relationship of the workflow nodes, wherein the connecting line and the nodes are not overlapped.
4. The nodes are subjected to simulated layout in a virtual two-dimensional coordinate grid mode, actual UI operation is not needed, and the layout is efficient.
Drawings
FIG. 1 is a prior art representation of a node flow manually dragged in by a user;
fig. 2 is a node flow display after the present invention is employed.
Detailed Description
The invention will be further described with reference to the accompanying drawings in which:
a method for automatically planning an optimal layout flowchart comprises the following steps:
the method comprises the following steps: setting the maximum width value or the maximum height value (alternative one) of the workflow nodes, and setting the interval width and the height of the nodes;
step two: acquiring all configured workflow nodes in the current workflow tool, wherein the configured workflow nodes comprise parent-child relationships among the nodes;
step three: traversing all workflow nodes, obtaining each node name, then obtaining the pixel length and the pixel height which are completely needed to be displayed under the condition that the node names are not subjected to line feed by using a built-in method Formattext of C #, and finally obtaining the maximum value of the length and the height;
step four: acquiring the width and height of a node during automatic layout;
(1) If the user sets the maximum width, firstly judging whether the maximum width is larger than the maximum length obtained in the third step, if so, using the maximum length obtained in the third step as the node width when in automatic layout, and if so, using the maximum width set by the user as the node width, wherein the node height = the maximum length obtained in the third step divided by the node width;
(2) If the user sets a height value, then node length = length maximum found in step three ÷ (node height ÷ height maximum found in step three), and the remainder rounding is used in the calculation.
Step five: constructing a virtual two-dimensional coordinate grid, wherein the grid is divided into an X axis and a Y axis and is arranged from top to bottom and from left to right, each scale of the X axis represents one column, the width of an odd column is the width of a node obtained in step four, the width of an even column is the width of a space between nodes set by a user in step one, each scale of the Y axis represents one row of the layout, the height of an odd row is the height of the node obtained in step four, and the height of an even row is the height of the space between the nodes set by the user in step one;
step six: taking out the workflow nodes obtained in the second step one by one in a top-down recursive mode;
(1) Judging whether the node has a father node or not, if no father node indicates that the front node is a top node, adding two rows and two columns in the virtual two-dimensional coordinate network, and then placing the node into the first row and the first column which are newly added;
(2) If the node is judged to have a father node, firstly finding out the coordinates (x, y) of the father node and calculating to obtain the coordinates (x +2, y) of the current node, secondly judging whether the coordinates (x + 2) exist in the virtual two-dimensional coordinate system, and if not, establishing x-axis coordinates of two columns and two columns until the current node can be put in;
(3) Judging that the node has two or more father nodes, firstly obtaining the father node (X1, y 1) with the maximum X-axis value by traversing the father nodes, secondly adding two rows of y1+1 and y1+2 at the position below the y1 in the virtual two-dimensional coordinate system, calculating again to obtain the coordinates (X1 +2, y1+ 2) of the current node, judging again whether the X1+2 coordinates exist in the virtual two-dimensional coordinate system, if not, establishing the X-axis coordinates of the two rows until the current node can be put in, finally traversing all the nodes already put in the virtual two-dimensional coordinate system, judging whether the y-axis coordinate of the node is larger than y1, if not, not changing, if so, updating the y-axis coordinate of the node to be the original y-axis value +2;
step seven: after the sixth step is completed, all workflow nodes have the x and y coordinates of the workflow nodes in the virtual two-dimensional coordinate network, and the placement positions of the nodes in the canvas are obtained through calculation;
the pixel position at the top of the node relative to the top of the canvas = (node y-axis coordinate ÷ 2) ("rounding off here)" x (node height + spacing height between nodes), and the pixel position at the left side of the node relative to the canvas = (node x-axis coordinate ÷ 2) ("rounding off here)" x (node width + spacing width between nodes).
Step eight: drawing all the workflow nodes into the canvas and displaying by using the pixel positions of the workflow nodes relative to the canvas obtained in the step seven and the pixel sizes of the workflow nodes obtained in the step four;
step nine: all workflow nodes are recursed using a top-down recursion approach and all nodes are connected two by two using polylines with arrows.
(1) Calculating the coordinates (x, y) of the starting position of the polyline relative to the canvas; x = (pixel position on the left side of the node relative to the canvas + parent node width), y = pixel position on top of the parent node relative to the canvas + parent node height ÷ 2;
(2) Calculating coordinates (x, y) of the ending position of the polyline relative to the canvas; x = (pixel position to the left of the canvas on the left side of the child node + child node width), y = pixel position to the top of the child node + child node height ÷ 2;
(3) If the parent node and the child node are not in the same row, coordinates (x 1, y 1) and (x 2, y 2) of two turning points of the broken line relative to the canvas need to be calculated, wherein (x 1, y 1) represents the turning point in the same row with the parent node, and (x 2, y 2) represents the turning point in the same row with the child node;
(4) To obtain two turning points of (X1, y 1) and (X2, y 2), firstly, obtaining an X-axis median point coordinate between a parent node and a child node, wherein the median point X-axis coordinate = (child node X-axis coordinate-parent node X-axis coordinate) ÷ 2, wherein y1= y of the parent node, and y2= y of the child node;
(5) The method comprises the following steps that (1) from the x-axis coordinate of a father node to +2 each time, the x-axis coordinate of the next horizontal node is obtained until the x-axis coordinate of a middle point is obtained, and a vertical coordinate range is obtained when the y-axis coordinate of the father node to +2 each time and the y-axis coordinate of the next vertical node to the y-axis coordinate of a child node are obtained each time;
(6) Judging whether other points exist in the vertical coordinate range, if so, the current x-1 is the x-axis coordinate of the turning point, if not, the step (5) is continuously executed until the last vertical coordinate range is obtained, and the x-axis coordinate of the turning point is the x-1 of the last vertical coordinate range;
(7) And (4) after obtaining the complete coordinate points of the connecting line through the steps (3), (4), (5) and (6), connecting the points to draw a broken line, and drawing a rightward arrow at the last point to represent the direction of the connecting line.
The method has the advantages that the efficient function is specifically that all workflow nodes are subjected to simulated layout in a virtual two-dimensional coordinate network mode, no UI operation is performed in the layout process, and the efficiency is extremely high;
the beautiful and non-overlapping layout display function of the invention is that firstly, through the layout method, all nodes can be free of coverage, and parent and child nodes are as close as possible. The two automatic connection methods can achieve the shortest path of connection and no coverage exists between the connection and the node.
FIG. 1 illustrates a node flow presentation manually dragged in by a user;
fig. 2 shows a node flow display organized by the method of the present application.
The present invention is not limited to the above preferred embodiments, and any modifications, equivalent substitutions and improvements made within the spirit and principle of the present invention should be included in the protection scope of the present invention.

Claims (5)

1. A method for automatically planning an optimal layout flowchart is characterized by comprising the following steps:
the method comprises the following steps: setting the maximum width value or the maximum height value of the workflow nodes, and setting the interval width and the height of the nodes;
step two: acquiring all configured workflow nodes in the current workflow tool, wherein the configured workflow nodes comprise parent-child relationships among the nodes;
step three: traversing all workflow nodes, acquiring each node name, then acquiring the pixel length and the pixel height which are completely needed to be displayed under the condition that the node names are not subjected to line feed, and finally obtaining the maximum value of the length and the height;
step four: acquiring the width and height of a node during automatic layout;
step five: constructing a virtual two-dimensional coordinate grid, wherein the grid is divided into an X axis and a Y axis and is arranged from top to bottom and from left to right, each scale of the X axis represents one column, the width of an odd column is the width of a node obtained in step four, the width of an even column is the width of a space between nodes set by a user in step one, each scale of the Y axis represents one row of the layout, the height of an odd row is the height of the node obtained in step four, and the height of an even row is the height of the space between the nodes set by the user in step one;
step six: using a top-down recursion mode to take out the workflow nodes obtained in the second step one by one;
step seven: after the sixth step is completed, all workflow nodes have the x and y coordinates of the workflow nodes in the virtual two-dimensional coordinate network, and the placement positions of the nodes in the canvas are obtained through calculation;
step eight: drawing all the workflow nodes into the canvas and displaying by using the pixel positions of the workflow nodes relative to the canvas obtained in the step seven and the pixel sizes of the workflow nodes obtained in the step four;
step nine: all workflow nodes are recursed using a top-down recursion approach and connected two by two using polylines with arrows.
2. The method for automatically planning optimal layout flowchart according to claim 1, wherein in step four:
(1) If the user sets the maximum width, firstly judging whether the maximum width is larger than the maximum length obtained in the third step, if so, using the maximum length in the third step as the node width when in automatic layout, and if so, using the maximum length set by the user as the node width, wherein the node height = the maximum length obtained in the third step divided by the node width;
(2) If the user sets a height value, then node length = maximum length obtained in step three ÷ (maximum height obtained in node height ÷ step three), and rounding off is used in the calculation.
3. The method for automatically planning optimal layout flowchart according to claim 1, wherein in step six:
(1) Judging whether the node has a father node or not, if no father node indicates that the front node is a top node, firstly adding two rows and two columns in the virtual two-dimensional coordinate network, and then placing the node into the first row and the first column which are newly added;
(2) Judging whether the node has a father node, firstly finding out the coordinates (x, y) of the father node and calculating to obtain the coordinates (x +2, y) of the current node, secondly judging whether the coordinates (x + 2) exist in the virtual two-dimensional coordinate system, and if not, establishing x-axis coordinates of two columns of the two columns until the current node can be put in;
(3) Judging that the node has two or more father nodes, firstly obtaining the father node (X1, y 1) with the maximum X-axis value by traversing the father nodes, secondly adding two rows of y1+1 and y1+2 at the position below the y1 in the virtual two-dimensional coordinate system, calculating again to obtain the coordinates (X1 +2, y1+ 2) of the current node, judging again whether the X1+2 coordinates exist in the virtual two-dimensional coordinate system, if not, establishing the X-axis coordinates of the two rows until the current node can be put in, finally traversing all the nodes already put in the virtual two-dimensional coordinate system, judging whether the y-axis coordinate of the node is larger than y1, if not, not changing, if yes, updating the y-axis coordinate of the node to be the original y-axis value +2.
4. The method for automatically planning an optimal layout flowchart according to claim 1, wherein in step seven: pixel position on top of the node relative to the top of the canvas = (node y-axis coordinate ÷ 2) × (node height + spacing height between nodes), pixel position on left side of the node relative to the canvas = (node x-axis coordinate ÷ 2) × (node width + spacing width between nodes).
5. The method for automatically planning optimal layout flowchart according to claim 1, wherein in the ninth step:
(1) Calculating the coordinates (x, y) of the starting position of the polyline relative to the canvas; x = (pixel position to the left of the node relative to the canvas + parent node width), y = pixel position at the top of the parent node relative to the top of the canvas + parent node height ÷ 2;
(2) Calculating coordinates (x, y) of the ending position of the polyline relative to the canvas; x = (pixel position to the left of the canvas on the left side of the child node + child node width), y = pixel position to the top of the canvas + child node height ÷ 2 at the top of the child node;
(3) If the parent node and the child node are not in the same row, coordinates (x 1, y 1) and (x 2, y 2) of two turning points of the broken line relative to the canvas need to be calculated, wherein (x 1, y 1) represents the turning point in the same row with the parent node, and (x 2, y 2) represents the turning point in the same row with the child node;
(4) To obtain two turning points of (X1, y 1) and (X2, y 2), firstly, obtaining an X-axis midpoint coordinate between a parent node and a child node, wherein the midpoint X-axis coordinate = (child node X-axis coordinate-parent node X-axis coordinate) ÷ 2, and y1= y of the parent node and y2= y of the child node;
(5) Each time +2 is started from the x-axis coordinate of the father node, the x-axis coordinate of the next horizontal node is obtained until the x-axis coordinate of the middle point is obtained, and each time the x-axis coordinate is obtained, the y-axis coordinate of the next vertical node is also required to be obtained from the y-axis coordinate of the father node for each time +2 until the y-axis coordinate of the child node is obtained, so that a vertical coordinate range is obtained;
(6) Judging whether other points exist in the vertical coordinate range, if so, the current x-1 is the x-axis coordinate of the turning point, if not, the step (5) is continuously executed until the last vertical coordinate range is obtained, and the x-axis coordinate of the turning point is the x-1 of the last vertical coordinate range;
(7) And (4) after obtaining the complete coordinate points of the connecting line through the steps (3), (4), (5) and (6), connecting the points and drawing a broken line, and drawing a rightward arrow at the last point to represent the direction of the connecting line.
CN201910846790.8A 2019-09-09 2019-09-09 Method for automatically planning optimal layout flow chart Active CN110544284B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN201910846790.8A CN110544284B (en) 2019-09-09 2019-09-09 Method for automatically planning optimal layout flow chart

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN201910846790.8A CN110544284B (en) 2019-09-09 2019-09-09 Method for automatically planning optimal layout flow chart

Publications (2)

Publication Number Publication Date
CN110544284A CN110544284A (en) 2019-12-06
CN110544284B true CN110544284B (en) 2023-04-11

Family

ID=68712932

Family Applications (1)

Application Number Title Priority Date Filing Date
CN201910846790.8A Active CN110544284B (en) 2019-09-09 2019-09-09 Method for automatically planning optimal layout flow chart

Country Status (1)

Country Link
CN (1) CN110544284B (en)

Families Citing this family (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN113012260B (en) * 2021-02-09 2023-04-28 福建天泉教育科技有限公司 Method and terminal for erasing crossing area under Canvas
CN114064956B (en) * 2021-11-23 2022-09-23 重庆允成互联网科技有限公司 Node positioning method and configuration method based on visual configuration of trigger

Citations (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN103473388A (en) * 2013-07-25 2013-12-25 深圳市华傲数据技术有限公司 System and device capable of realizing automatic layout of flow chart
CN105550021A (en) * 2015-11-30 2016-05-04 用友网络科技股份有限公司 Cross-browser dynamic presentation method and cross-browser dynamic presentation apparatus
CN107016145A (en) * 2015-12-30 2017-08-04 台湾积体电路制造股份有限公司 Integrated circuit
CN109886509A (en) * 2019-03-29 2019-06-14 长春理工大学 A kind of mobile poly concourse nodes paths planning method, system and electronic equipment
CN109962811A (en) * 2019-01-07 2019-07-02 西南科技大学 A kind of increment type stable state layout method for time-varying network data
CN110086665A (en) * 2019-04-25 2019-08-02 北京计算机技术及应用研究所 A kind of network topological diagram methods of exhibiting based on jTopo

Family Cites Families (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
WO2002042929A1 (en) * 2000-11-22 2002-05-30 Adobe Systems Incorporated Automated paragraph layout

Patent Citations (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN103473388A (en) * 2013-07-25 2013-12-25 深圳市华傲数据技术有限公司 System and device capable of realizing automatic layout of flow chart
CN105550021A (en) * 2015-11-30 2016-05-04 用友网络科技股份有限公司 Cross-browser dynamic presentation method and cross-browser dynamic presentation apparatus
CN107016145A (en) * 2015-12-30 2017-08-04 台湾积体电路制造股份有限公司 Integrated circuit
CN109962811A (en) * 2019-01-07 2019-07-02 西南科技大学 A kind of increment type stable state layout method for time-varying network data
CN109886509A (en) * 2019-03-29 2019-06-14 长春理工大学 A kind of mobile poly concourse nodes paths planning method, system and electronic equipment
CN110086665A (en) * 2019-04-25 2019-08-02 北京计算机技术及应用研究所 A kind of network topological diagram methods of exhibiting based on jTopo

Non-Patent Citations (1)

* Cited by examiner, † Cited by third party
Title
流程图布局算法实现;边旭 等;《数字技术与应用》;20160515;第127-128页 *

Also Published As

Publication number Publication date
CN110544284A (en) 2019-12-06

Similar Documents

Publication Publication Date Title
CN110544284B (en) Method for automatically planning optimal layout flow chart
CN108121863B (en) Method, device and equipment for creating pipeline label and computer readable storage medium
US20140121801A1 (en) Computer product, assembly sequence generating apparatus, and manufacturing method
CN110958134B (en) Method and device for realizing network topology
CN104751507B (en) Graphical content rendering intent and device
CN110675471B (en) Node connection line generation method, device, equipment and storage medium
CN112419498B (en) Scheduling rendering method for massive oblique photographic data
CN110247794B (en) Topological graph display method and device in multiple layout modes
CN109324796A (en) Quick interface arrangement method and device
CN103942345A (en) Method for automatically generating IED network graph
JP2006317450A5 (en)
CN111787433B (en) Optical distribution network visual light path scheduling method and system
CN111241779B (en) Method for designing irregular parallel lines based on Cadence design software
CN104461577B (en) A kind of flow chart display methods based on HTML5 graphics drawing programs
CN109933588B (en) Method and system for converting dwg data into gdb data
CN111639412A (en) Method for automatically generating single line diagram based on geographical edge layout
CN109739859A (en) A kind of relation map method for drafting, system and relevant apparatus
CN112348935B (en) Wire frame rendering method, terminal device and computer-readable storage medium
CN102074030B (en) A kind of acquisition, the method for editing self-defined figure and subtitle graphic manufacturing system
CN102999944B (en) The embossment model modelling approach of a kind of border subregion
CN111476862B (en) Dynamic broken line generation method for optical fiber primitive
CN105117219A (en) User-defined drawing control realization method and system
CN112395657A (en) Box construction method, device, system and computer readable medium
CN116523941B (en) Method and device for simplifying polygon with holes
CN103838924B (en) Display method and device of three-dimensional model information

Legal Events

Date Code Title Description
PB01 Publication
PB01 Publication
SE01 Entry into force of request for substantive examination
SE01 Entry into force of request for substantive examination
CB02 Change of applicant information
CB02 Change of applicant information

Address after: No. 2119, Unit 1, Building 7, No. 1700, North Section of Tianfu Avenue, Hi-tech Zone, Chengdu, Sichuan, 610000

Applicant after: Chengdu Fengwei Technology Co.,Ltd.

Address before: No. 2119, Unit 1, Building 7, No. 1700, North Section of Tianfu Avenue, Hi-tech Zone, Chengdu, Sichuan, 610000

Applicant before: CHENGDU SHENSI SCIENCE & TECHNOLOGY Co.,Ltd.

GR01 Patent grant
GR01 Patent grant