Removing a few unused debugs.
This commit is contained in:
parent
4ab9f3db93
commit
faca216010
4 changed files with 1 additions and 4 deletions
|
@ -373,7 +373,6 @@ class SpecialDomain extends Domain {
|
|||
class DomainSet extends SpecialDomain {
|
||||
constructor(values) {
|
||||
super('', x => true, x => x, true)
|
||||
console.log(values)
|
||||
var newVals = {}
|
||||
this.executedValues = []
|
||||
for(var value of values) {
|
||||
|
|
|
@ -53,7 +53,6 @@ function getObjectsName(objType) {
|
|||
types.forEach(function(elemType){
|
||||
elementNames = elementNames.concat(currentObjects[elemType].map(obj => obj.name))
|
||||
})
|
||||
console.log(elementNames)
|
||||
return elementNames
|
||||
}
|
||||
if(currentObjects[objType] == undefined) return []
|
||||
|
|
|
@ -146,7 +146,6 @@ class Function extends Common.ExecutableObject {
|
|||
if(currentX === null) break;
|
||||
if((definitionDomain.includes(currentX) || definitionDomain.includes(previousX)) &&
|
||||
(destinationDomain.includes(currentY) || destinationDomain.includes(previousY))) {
|
||||
console.log(drawDash, drawPoints)
|
||||
if(drawDash)
|
||||
canvas.drawDashedLine(ctx, canvas.x2px(previousX), canvas.y2px(previousY), canvas.x2px(currentX), canvas.y2px(currentY))
|
||||
if(drawPoints) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue