2018-01-03 13:18:01 +01:00
|
|
|
|
/*
|
|
|
|
|
* Base des objets Bras et jambe
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Bonhomme02
|
|
|
|
|
{
|
|
|
|
|
class BaseBJ
|
|
|
|
|
{
|
2018-01-04 11:34:30 +01:00
|
|
|
|
Peau Haut, Millieux, Bas, parent;
|
|
|
|
|
double angleHaut, angleMillieux, angleBas;
|
|
|
|
|
public BaseBJ()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
public BaseBJ(ref Peau parent, ref Peau bas, double epaisseur)
|
|
|
|
|
{
|
|
|
|
|
this.parent = parent;
|
|
|
|
|
Bas = bas;
|
|
|
|
|
angleHaut = angleMillieux = angleBas = 0;
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-03 13:18:01 +01:00
|
|
|
|
}
|
|
|
|
|
}
|