IsoAlgo Split Point

IsoAlgo Split Point

eryar@163.com

 

Abstract.

The impossibility to define the splitting point makes it impossible to generate 

the readable isometrics drawing in some cases. If the drawing is so crowded 

that can not read it clearly, it should add the split point to the drawing.

 

Key words. IsoAlgo, Isogen, Split Point,

 

1. Introduction

The impossibility to define the splitting point makes it impossible to generate the readable

isometrics drawing in some cases. If the drawing is so crowded that can not read it clearly,

it should add the split point to the drawing.

Figure 5.1 Crowded isometric drawing

 

2. Implementation

In PCF there is one identity to indicate the split point:

Figure 5.2 Split Point info in PCF

After split the drawing at the crowed position, will generate more isometric drawings, but 

they are more clearly than before. As the following picture shows that add two split points

automatically to get three isometric drawings. Every isometric drawing is more readable.

Figure 5.3 Split the isometric drawing

3. Conclusion

In order to improve the quality of the isometric drawing, need add split point for crowded

position to get more readable drawings.

 

IsoAlgo is not finish yet, any feedback or suggestion is welcome, 

please send email to the author: IsoAlgo@gmail.com.

 

For more information about IsoAlgo, please visit:

http://code.google.com/p/isoalgo/

时间: 2024-08-02 01:58:20

IsoAlgo Split Point的相关文章

IsoAlgo Split Point Issues

IsoAlgo Split Point Issues eryar@163.com   Abstract.  The impossibility to define the splitting point makes it impossible to generate the readable isometrics drawing in some cases. If the drawing is so crowded that can not read it clearly, it should

IsoAlgo Split Drawing Info

IsoAlgo split drawing info eryar@163.com   Abstract.  When the isometric drawing is splited by split point, it should mark the continue drawing info on the split point. You can also  config the "CONT. ON" by the config file.   Key words. IsoAlgo

How to split piping isometric drawing automatically?

eryar@163.com   key words: IsoAlgo, Isogen, ISO-SPLIT-POINT, split automatically   当管道模型比较复杂时,生成的轴测图就会有重叠的现象,如何来消除重叠呢,一种有效的方式就是分图. Figure 1 Complex piping isometric drawing (Generated by IsoAlgo) 如上图所示,有几处尺寸标注或件号标注明显重叠,导致图面杂乱.在一些软件中有手动添加分图点的方式,强制分图.对

Sql Server实现自定义拆分字符串函数Split()

经常我们要用到批量操作时都会用到字符串的拆分,郁闷的是SQL Server中却没有自带Split函数,所以我们只能自己动手来解决一下.为了减少和数据库的通讯次数,我们都会利用这种方法来实现批量操作.当然有时我们会借助Execute这个方法来实现,利用这个方法有一个不好的地方就是她只认识以","分割的字符串,在传IDs批量操作的时候还是可以达到目的,但是经常我们要用到更复杂的操作时我们就需要自己动手来完成了...... 1.当我们需要传入很长的字符串是我们可以借助NText和Text类型

Python中用split()方法分割字符串的使用

  这篇文章主要介绍了在Python中用split()方法分割字符串的使用介绍,是Python入门中的基础知识,需要的朋友可以参考下 split()方法返回的字符串中的所有单词的列表,使用str作为分隔符(如果在未指定的所有空格分割),可选择限当前分割为数量num. 语法 以下是split()方法的语法: ? 1 str.split(str="", num=string.count(str)). 参数 str -- 这是任何分隔符,默认情况下是空格. num -- 这是要分割的行数.

asp中Split的用法示例

示例|split 大家有没有碰到过要想取一字符串里的某些值而无从下手?有没有觉得看书或教材对split的写法糊里糊涂--如果有此疑问的话,请看下面我对例子的解释,相信您会对这个有一定的了解. 例如我想取得一个ftp里的用户名及密码(服务器等)值(用IE当FTP时或从表中取出FTP的值).下面是我的解决思路:设url为收到的URL值,这里指:url=ftp://username:password@server,请注意这句暗墓媛?br>我想大家都看清楚这个URL里的规律了吧,就是各个部分都被"

对Reader进行token的类,可以访入多个split进行解析

在java.util中的java.io.StringTokenizer类能对单个字符串进行解析,在jdk1.4中的split也可以对单个字符串进行解析,但都不能对Reader流进行解析,在多个字符解析的时候也不能返回分割两个字符串的字符串,下面这个类就是为了解决这个问题而写的,还可以在准备包括一些最基本的解析类型,*和? 可以设置多个split进行解析,在解析的时候返回对应的分割字符串 程序可以直接运行 /* * 创建日期 2005-4-4 * * 更改所生成文件模板为 * 窗口 > 首选项 >

在SQLSERVER里写了一个Split函数

server|sqlserver|函数 因查询统计需要,今天早上在SQLSERVER里写了一个类似于Split的函数,如下 create function f_split(@SourceSql varchar(8000),@StrSeprate varchar(10))returns @temp table(a varchar(100))--实现split功能 的函数--date    :2005-4-20--Author :Dominoas begin    declare @i int   

split 方法

  将一个字符串分割为子字符串,然后将结果作为字符串数组返回. stringObj.split([separator[, limit]]) 参数 stringObj 必选项.要被分解的 String 对象或文字.该对象不会被 split 方法修改. separator 可选项.字符串或 正则表达式 对象,它标识了分隔字符串时使用的是一个还是多个字符.如果忽略该选项,返回包含整个字符串的单一元素数组. limit 可选项.该值用来限制返回数组中的元素个数. 说明 split 方法的结果是一个字符串