using KinematicsBase;
using System;
using System.Collections.Generic;
///
///
///
public class Data_RobotCurr
{
///
///
///
public string ModelCode
{
get;
set;
} = "";
///
///
///
public string ModelName
{
get;
set;
} = "";
public string TcpSelf
{
get;
set;
} = "";
public List CurrentJoint
{
get;
set;
} = new List ();
///
///
///
public Data_Position Base
{
get;
set;
} = new Data_Position();
///
///
///
public Data_Position Tool
{
get;
set;
} = new Data_Position();
///
///
///
public Data_Position Tcp
{
get;
set;
} = new Data_Position();
}
public class Data_CurrentJoint
{
public string JId
{
get;
set;
} = "";
public string JName
{
get;
set;
} = "";
public string JValue
{
get;
set;
} = "";
public string JType
{
get;
set;
} = "";
}