Examples of b()


Examples of net.algart.math.functions.LinearOperator.b()

            this.b = new double[this.inverseTransforms.length][];
            for (int k = 0; k < this.inverseTransforms.length; k++) {
                LinearOperator lo = (LinearOperator)this.inverseTransforms[k];
                assert lo.n() == 2;
                this.a[k] = lo.a();
                this.b[k] = lo.b();
            }
            this.a0 = this.inverseTransforms.length >= 1 ? this.a[0] : null;
            this.a1 = this.inverseTransforms.length >= 2 ? this.a[1] : null;
            this.a2 = this.inverseTransforms.length >= 3 ? this.a[2] : null;
            this.a3 = this.inverseTransforms.length >= 4 ? this.a[3] : null;
View Full Code Here

Examples of net.algart.math.functions.LinearOperator.b()

            this.b = new double[this.inverseTransforms.length][];
            for (int k = 0; k < this.inverseTransforms.length; k++) {
                LinearOperator lo = (LinearOperator)this.inverseTransforms[k];
                assert lo.n() == 2;
                this.a[k] = lo.a();
                this.b[k] = lo.b();
            }
            this.a0 = this.inverseTransforms.length >= 1 ? this.a[0] : null;
            this.a1 = this.inverseTransforms.length >= 2 ? this.a[1] : null;
            this.a2 = this.inverseTransforms.length >= 3 ? this.a[2] : null;
            this.a3 = this.inverseTransforms.length >= 4 ? this.a[3] : null;
View Full Code Here

Examples of net.geco.basics.Html.b()

      }
      @Override
      public void mousePressed(MouseEvent e) {
        Html html = new Html();
        html.open("div", "align=center"); //$NON-NLS-1$ //$NON-NLS-2$
        html.b("Geco version " + geco.version()).br().br(); //$NON-NLS-1$
        html.contents("Copyright (c) 2008-2011 Simon Denier.").br(); //$NON-NLS-1$
        html.contents(Messages.uiGet("GecoWindow.AboutLicenseText")).br(); //$NON-NLS-1$
        html.contents(Messages.uiGet("GecoWindow.AboutReadmeText")); //$NON-NLS-1$
        html.close("div"); //$NON-NLS-1$
        JOptionPane.showMessageDialog(
View Full Code Here

Examples of net.minecraft.server.AxisAlignedBB.b()

       * entityBounds.a(bounds)) { collisionBuffer.add(entityBounds); }
       */

      entityBounds = collider.boundingBox;
      // Entity collision event after the null/inBounds check
      if (entityBounds != null && entityBounds.b(bounds) && controller.onEntityCollision(Conversion.toEntity.convert(collider))) {
        collisionBuffer.add(entityBounds);
      }
    }

    // Done
View Full Code Here

Examples of net.minecraft.server.Block.b()

            f = 1.0f;
          }
          entity.makeRandomSound(EntityRef.getSwimSound.invoke(handle), f, 1.0f);
        }
        entity.makeStepSound(bX, bY, bZ, CommonNMS.getMaterial(block));
        block.b(handle.world, bX, bY, bZ, handle);
      }
    }

    EntityRef.updateBlockCollision(handle);
View Full Code Here

Examples of net.minecraft.server.EntityPlayer.b()

    }

    @Override
    public void dealFallDamage() {
        EntityPlayer p = ((CraftPlayer) player).getHandle();
        p.b(0D, true);

    }
}
View Full Code Here

Examples of net.minecraft.server.WatchableObject.b()

  public <K> K getWatchedData(int index, Class<K> type, K def) {
    WatchableObject object = (WatchableObject) DataWatcherRef.read.invoke(h().getDataWatcher(), index);
    if (object == null) {
      return def;
    }
    return Conversion.convert(object.b(), type, def);
  }

  @Override
  public int hashCode() {
    return entity == null ? super.hashCode() : entity.hashCode();
View Full Code Here

Examples of net.minecraft.server.v1_7_R4.PlayerInventory.b()

    public org.bukkit.inventory.PlayerInventory getInventory() {
        if (InventoryScriptHelper.offlineInventories.containsKey(getUniqueId()))
            return InventoryScriptHelper.offlineInventories.get(getUniqueId());
        PlayerInventory inventory = new PlayerInventory(null);
        inventory.b(this.compound.getList("Inventory", 10));
        org.bukkit.inventory.PlayerInventory inv = new CraftInventoryPlayer(inventory);
        InventoryScriptHelper.offlineInventories.put(getUniqueId(), inv);
        return inv;
    }
View Full Code Here

Examples of org.apache.etch.bindings.java.msg.ComboValidator.b()

      Validator_StructValue y = findStructValueValidator( x.a() );
     
      if (y != null)
        return y;
     
      return findStructValueValidator( x.b() );
    }
   
    return null;
  }
View Full Code Here

Examples of org.gephi.graph.api.EdgeData.b()

            this.edge = Edge;
        }

        public Color getEdgeColor() {
            EdgeData data = edge.getEdgeData();
            if(data.r()<0||data.g()<0||data.b()<0||data.alpha()<0){
                return null;//Not specific color for edge
            }

            return new Color(data.r(), data.g(), data.b(), data.alpha());
        }
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.