コード例 #1
0
ファイル: manipulation.go プロジェクト: nat-n/shapeset
func (ss *ShapeSet) ScaleAndCenter(max_dimension float64) {
	bbox := ss.BoundingBox()
	center := bbox.Center()
	current_max_dim := math.Max(math.Max(bbox.Width(), bbox.Height()), bbox.Depth())
	scale_factor := max_dimension / current_max_dim

	// center then scale
	s := transformation.Scale(scale_factor)
	transform := s.Multiply(
		transformation.Translation(-center.GetX(), -center.GetY(), -center.GetZ()))

	all_vertices := make([]geom.Vec3I, 0)
	ss.EachMesh(func(m mesh.MeshI) {
		m.(*Mesh).Vertices.Each(func(v mesh.VertexI) {
			if !v.(*Vertex).IsShared() {
				all_vertices = append(all_vertices, geom.Vec3I(v))
			}
		})
	})

	ss.BordersIndex.Each(func(b *Border) {
		for _, v := range b.Vertices {
			all_vertices = append(all_vertices, geom.Vec3I(v))
		}
	})

	transform.ApplyToVec3(all_vertices...)
}
コード例 #2
0
ファイル: vertex.go プロジェクト: nat-n/gomesh
func (v *Vertex) CalculateNormal() {
	acc := geom.Vec3{0, 0, 0}
	for _, f := range v.Faces {
		t := f.AsTriangle()
		n := t.Normal()
		acc = acc.Add(geom.Vec3I(&n))
	}
	result := acc.DivideScalar(float64(len(v.Faces)))
	v.Normal = &result
}