/// <summary>
 ///   Compiles the node to a Tikz format
 /// </summary>
 /// <param name="writer">The writer used to compile this object</param>
 /// <returns>Returns the current node as a string in Tikz format</returns>
 public override string Compile(ITikzWriter writer)
 {
     return(writer.CompileNode(this));
 }
Exemple #2
0
 /// <summary>
 ///   Compiles the object to a Tikz format
 /// </summary>
 /// <param name="writer">The writer used to compile this object</param>
 /// <returns>Returns the current node as a string in Tikz format</returns>
 public abstract string Compile(ITikzWriter writer);