PW_COEF

Objective-C

struct PW_COEF {    /* row coefficient structure */
    int m;          /* number of c coefficients (=0 for none) */
    double *c;      /* power coefficients */
}

Swift

struct PW_COEF

Undocumented

  • m

    Undocumented

    Declaration

    Objective-C

    int m

    Swift

    var m: Int32
  • c

    Undocumented

    Declaration

    Objective-C

    double *c

    Swift

    var c: UnsafeMutablePointer<Double>!