// Numbas version: exam_results_page_options {"name": "draw a rectangle", "extensions": [], "custom_part_types": [], "resources": [], "navigation": {"allowregen": true, "showfrontpage": false, "preventleave": false, "typeendtoleave": false}, "question_groups": [{"pickingStrategy": "all-ordered", "questions": [{"functions": {"rectangle": {"definition": "\n var c = document.createElement('canvas');\n $(c).attr('width',w+40).attr('height',h+40);\n var context = c.getContext('2d');\n \n //fill in rectangle with a light shade\n context.fillStyle = '#eee';\n context.fillRect(5,5,w,h);\n \n //draw outline\n context.strokeStyle = '#000';\n context.lineWidth = 3;\n context.strokeRect(5,5,w,h);\n \n //draw labels\n context.fillStyle = '#000';\n context.font = '20px sans-serif';\n var wstring = w+'m';\n var tw = context.measureText(wstring).width;\n console.log(tw);\n context.fillText(wstring,5+(w-tw)/2,5+h+25);\n \n var hstring = h+'m';\n var hw = context.measureText(hstring).width;\n context.save();\n context.translate(5+w+25,5+(h+hw)/2);\n context.rotate(-Math.PI/2);\n context.fillText(hstring,0,0);\n \n return c;\n ", "type": "html", "language": "javascript", "parameters": [["w", "number"], ["h", "number"]]}}, "ungrouped_variables": ["h", "w"], "name": "draw a rectangle", "tags": ["canvas", "demo", "function", "graphic"], "preamble": {"css": "", "js": ""}, "advice": "", "rulesets": {}, "parts": [{"prompt": "

What is the rectangle's perimeter, in metres?

", "allowFractions": false, "variableReplacements": [], "maxValue": "2(w+h)", "minValue": "2(w+h)", "variableReplacementStrategy": "originalfirst", "correctAnswerFraction": false, "showCorrectAnswer": true, "scripts": {}, "marks": 1, "type": "numberentry", "showPrecisionHint": false}, {"prompt": "

What is the rectangle's area, in metres?

", "allowFractions": false, "variableReplacements": [], "maxValue": "w*h", "minValue": "w*h", "variableReplacementStrategy": "originalfirst", "correctAnswerFraction": false, "showCorrectAnswer": true, "scripts": {}, "marks": 1, "type": "numberentry", "showPrecisionHint": false}], "statement": "

This rectangle is {w} metres wide and {h} metres long.

\n

{rectangle(w,h)}

", "variable_groups": [], "variablesTest": {"maxRuns": 100, "condition": ""}, "variables": {"h": {"definition": "random(50..100#5)", "templateType": "anything", "group": "Ungrouped variables", "name": "h", "description": ""}, "w": {"definition": "random(100..200#5)", "templateType": "anything", "group": "Ungrouped variables", "name": "w", "description": ""}}, "metadata": {"notes": "

Doesn't work in IE8, because it doesn't support the canvas element.

", "description": "

The custom function rectangle(width,height) draws a rectangle with the given dimensions, along with some labels.

", "licence": "Creative Commons Attribution 4.0 International"}, "type": "question", "showQuestionGroupNames": false, "question_groups": [{"name": "", "pickingStrategy": "all-ordered", "pickQuestions": 0, "questions": []}], "contributors": [{"name": "TEAME CIT", "profile_url": "https://numbas.mathcentre.ac.uk/accounts/profile/591/"}]}]}], "contributors": [{"name": "TEAME CIT", "profile_url": "https://numbas.mathcentre.ac.uk/accounts/profile/591/"}]}