public CIVector(double[] values) { super((SkipInit) null); if (values == null) { throw new NullPointerException("values"); } MachineSizedFloatPtr p = Struct.allocate(MachineSizedFloatPtr.class, values.length); p.set(values); initObject(initWithValues$count$(p, values.length)); }
public static MKPolyline create(CLLocationCoordinate2D[] coords) { CLLocationCoordinate2D first = Struct.allocate(CLLocationCoordinate2D.class, coords.length); first.update(coords); return create(first, coords.length); }
/*</members>*/ public static MKPolyline create(MKMapPoint[] points) { MKMapPoint first = Struct.allocate(MKMapPoint.class, points.length); first.update(points); return create(first, points.length); }