UnityMol  0.9.6-875
UnityMol viewer / In developement
TubeVertex.cs
Go to the documentation of this file.
1 
66 using UnityEngine;
67 using System.Collections;
68 
69 public class TubeVertex
70 {
71  public Vector3 point = Vector3.zero;
72  public float radius = 1.0f;
73  public Color color = Color.yellow;
74 
75  public TubeVertex(Vector3 pt,float r,Color c)
76  {
77  point=pt;
78  radius=r;
79  color=c;
80  }
81 }
Color color
Definition: TubeVertex.cs:73
float radius
Definition: TubeVertex.cs:72
TubeVertex(Vector3 pt, float r, Color c)
Definition: TubeVertex.cs:75
Vector3 point
Definition: TubeVertex.cs:71