Examples of Disk


Examples of org.jclouds.googlecomputeengine.domain.Disk

      // Note that the ordering is significant here - the first disk must be the boot disk.
      List<PersistentDisk> disks = Lists.newArrayList();

      if (!tryFind(options.getDisks(), isBootDisk()).isPresent()) {
         Disk bootDisk = createBootDisk(template, name);

         disks.add(new PersistentDisk(Mode.READ_WRITE,
                                      bootDisk.getSelfLink(),
                                      null,
                                      true,
                                      true));
      }
View Full Code Here

Examples of org.lwjgl.util.glu.Disk

     * @param innerRadius
     * @param outerRadius
     */
    public GLUDisk(Vector3 origin, Color mainColor, Color secondaryColor, float innerRadius, float outerRadius) {
        super(origin, mainColor, secondaryColor);
        disk = new Disk();
        setGLUQuadric(disk);
        setInnerRadius(innerRadius);
        setOuterRadius(outerRadius);
        setSlices(DEFAULT_SLICES);
        setLoops(DEFAULT_LOOPS);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.