createTangentSpaceDebugPrimitive(options) → Primitive
        Creates a 
    
    
    
    
    
        
Primitive to visualize well-known vector vertex attributes:
normal, binormal, and tangent.  Normal
is red; binormal is green; and tangent is blue.  If an attribute is not
present, it is not drawn.
    | Name | Type | Description | ||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| options | Object | Object with the following properties: 
 | 
Returns:
    A new 
        
    
    
Primitive instance with geometry for the vectors.
Example:
scene.primitives.add(Cesium.createTangentSpaceDebugPrimitive({
   geometry : instance.geometry,
   length : 100000.0,
   modelMatrix : instance.modelMatrix
}));