示例#1
0
 public static int selaWriteStream(IntPtr fp, Sela sela)
 {
     throw new NotImplementedException();
 }
示例#2
0
 public static void selaDestroy(this Sela psela)
 {
     throw new NotImplementedException();
 }
示例#3
0
 public static int selaWrite(string fname, Sela sela)
 {
     throw new NotImplementedException();
 }
示例#4
0
 public static IntPtr selaGetCombName(this Sela sela, int size, int direction)
 {
     throw new NotImplementedException();
 }
示例#5
0
 public static Sarray selaGetSelnames(this Sela sela)
 {
     throw new NotImplementedException();
 }
示例#6
0
 // Accessors:
 public static int selaGetCount(this Sela sela)
 {
     throw new NotImplementedException();
 }
示例#7
0
 public static int selaWrite(string fname, Sela sela)
 {
     return(Native.DllImports.selaWrite(fname, (HandleRef)sela));
 }
示例#8
0
 public static Sela selaAddTJunctions(this Sela sela, float hlsize, float mdist, int norient, int debugflag)
 {
     throw new NotImplementedException();
 }
示例#9
0
 public static Sela sela4and8ccThin(this Sela sela)
 {
     throw new NotImplementedException();
 }
示例#10
0
 // Simple hit-miss structuring elements
 public static Sela selaAddHitMiss(this Sela sela)
 {
     throw new NotImplementedException();
 }
示例#11
0
 public static Sela selaAddDwaCombs(this Sela sela)
 {
     throw new NotImplementedException();
 }
示例#12
0
 public static int selaFindSelByName(this Sela sela, string name, out int pindex, out Sel psel)
 {
     throw new NotImplementedException();
 }
示例#13
0
 // Extension of sela:
 public static int selaAddSel(this Sela sela, Sel sel, string selname, int copyflag)
 {
     return(Native.DllImports.selaAddSel((HandleRef)sela, (HandleRef)sel, selname, copyflag));
 }
示例#14
0
        public static Pix selaDisplayInPix(this Sela sela, int size, int gthick, int spacing, int ncols)
        {
            var pointer = Native.DllImports.selaDisplayInPix((HandleRef)sela, size, gthick, spacing, ncols);

            return(new Pix(pointer));
        }
示例#15
0
 public static Pix selaDisplayInPix(this Sela sela, int size, int gthick, int spacing, int ncols)
 {
     throw new NotImplementedException();
 }
示例#16
0
 // Basic brick structuring elements
 public static Sela selaAddBasic(this Sela sela)
 {
     throw new NotImplementedException();
 }
示例#17
0
 // Extension of sela:
 public static int selaAddSel(this Sela sela, Sel sel, string selname, int copyflag)
 {
     throw new NotImplementedException();
 }
示例#18
0
 public static IntPtr selaGetBrickName(this Sela sela, int hsize, int vsize)
 {
     throw new NotImplementedException();
 }
示例#19
0
 public static Sel selaGetSel(this Sela sela, int i)
 {
     throw new NotImplementedException();
 }
示例#20
0
        public static void selaDestroy(this Sela psela)
        {
            var pointer = (IntPtr)psela;

            Native.DllImports.selaDestroy(ref pointer);
        }