當前位置: 首頁>>代碼示例>>Golang>>正文


Golang format.NewASCII函數代碼示例

本文整理匯總了Golang中github.com/yofu/dxf/format.NewASCII函數的典型用法代碼示例。如果您正苦於以下問題:Golang NewASCII函數的具體用法?Golang NewASCII怎麽用?Golang NewASCII使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了NewASCII函數的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。

示例1: New

// New creates a new Drawing.
func New() *Drawing {
	d := new(Drawing)
	d.Layers = make(map[string]*table.Layer)
	d.Layers["0"] = table.LY_0
	d.Groups = make(map[string]*object.Group)
	d.CurrentLayer = d.Layers["0"]
	d.Styles = make(map[string]*table.Style)
	d.Styles["STANDARD"] = table.ST_STANDARD
	d.CurrentStyle = d.Styles["STANDARD"]
	d.formatter = format.NewASCII()
	d.formatter.SetPrecision(16)
	d.Sections = []Section{
		header.New(),
		class.New(),
		table.New(),
		block.New(),
		entity.New(),
		object.New(),
	}
	d.dictionary = object.NewDictionary()
	d.addObject(d.dictionary)
	wd, ph := object.NewAcDbDictionaryWDFLT(d.dictionary)
	d.dictionary.AddItem("ACAD_PLOTSTYLENAME", wd)
	d.addObject(wd)
	d.addObject(ph)
	d.groupdict = object.NewDictionary()
	d.addObject(d.groupdict)
	d.dictionary.AddItem("ACAD_GROUP", d.groupdict)
	d.PlotStyle = ph
	d.Layers["0"].SetPlotStyle(d.PlotStyle)
	return d
}
開發者ID:spyle,項目名稱:dxf,代碼行數:33,代碼來源:drawing.go

示例2: String

// String outputs data using default formatter.
func (f *ThreeDFace) String() string {
	fm := format.NewASCII()
	return f.FormatString(fm)
}
開發者ID:spyle,項目名稱:dxf,代碼行數:5,代碼來源:3dface.go

示例3: String

// String outputs data using default formatter.
func (e *entity) String() string {
	f := format.NewASCII()
	return e.FormatString(f)
}
開發者ID:yofu,項目名稱:dxf,代碼行數:5,代碼來源:entity.go

示例4: String

// String outputs data using default formatter.
func (v *Viewport) String() string {
	f := format.NewASCII()
	return v.FormatString(f)
}
開發者ID:spyle,項目名稱:dxf,代碼行數:5,代碼來源:viewport.go

示例5: String

// String outputs data using default formatter.
func (lt *LineType) String() string {
	f := format.NewASCII()
	return lt.FormatString(f)
}
開發者ID:spyle,項目名稱:dxf,代碼行數:5,代碼來源:linetype.go

示例6: String

// String outputs data using default formatter.
func (d *DimStyle) String() string {
	f := format.NewASCII()
	return d.FormatString(f)
}
開發者ID:spyle,項目名稱:dxf,代碼行數:5,代碼來源:dimstyle.go

示例7: String

// String outputs data using default formatter.
func (a *AppID) String() string {
	f := format.NewASCII()
	return a.FormatString(f)
}
開發者ID:spyle,項目名稱:dxf,代碼行數:5,代碼來源:appid.go

示例8: String

// String outputs data using default formatter.
func (p *Point) String() string {
	f := format.NewASCII()
	return p.FormatString(f)
}
開發者ID:yofu,項目名稱:dxf,代碼行數:5,代碼來源:point.go

示例9: String

// String outputs data using default formatter.
func (v *Vertex) String() string {
	f := format.NewASCII()
	return v.FormatString(f)
}
開發者ID:spyle,項目名稱:dxf,代碼行數:5,代碼來源:vertex.go

示例10: String

// String outputs data using default formatter.
func (u *Ucs) String() string {
	f := format.NewASCII()
	return u.FormatString(f)
}
開發者ID:spyle,項目名稱:dxf,代碼行數:5,代碼來源:ucs.go

示例11: String

// String outputs data using default formatter.
func (l *Layer) String() string {
	f := format.NewASCII()
	return l.FormatString(f)
}
開發者ID:spyle,項目名稱:dxf,代碼行數:5,代碼來源:layer.go

示例12: String

// String outputs data using default formatter.
func (d *Dictionary) String() string {
	f := format.NewASCII()
	return d.FormatString(f)
}
開發者ID:spyle,項目名稱:dxf,代碼行數:5,代碼來源:dictionary.go

示例13: String

// String outputs data using default formatter.
func (b *Block) String() string {
	f := format.NewASCII()
	return b.FormatString(f)
}
開發者ID:spyle,項目名稱:dxf,代碼行數:5,代碼來源:block.go

示例14: String

// String outputs data using default formatter.
func (t *Text) String() string {
	f := format.NewASCII()
	return t.FormatString(f)
}
開發者ID:spyle,項目名稱:dxf,代碼行數:5,代碼來源:text.go

示例15: String

// String outputs data using default formatter.
func (g *Group) String() string {
	f := format.NewASCII()
	return g.FormatString(f)
}
開發者ID:spyle,項目名稱:dxf,代碼行數:5,代碼來源:group.go


注:本文中的github.com/yofu/dxf/format.NewASCII函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。