// UIConsole.c 

#include <stdio.h>
#include "stardelta.h"
int main(void )
{
  printf("Console user interface for star-triangle conversation\n\n");

  SetStarValues(1.0, 2.0, 3.0);
  StarToDelta();
  ShowValues();

  DeltaToStar();
  ShowValues();

  getchar();

  return 0;
}