{"id":874,"date":"2024-09-30T14:57:31","date_gmt":"2024-09-30T12:57:31","guid":{"rendered":"https:\/\/enter-thecircle.com\/?page_id=874"},"modified":"2024-09-30T15:03:35","modified_gmt":"2024-09-30T13:03:35","slug":"874-2","status":"publish","type":"page","link":"https:\/\/enter-thecircle.com\/de\/874-2\/","title":{"rendered":"THE HEIDELBERG WHEEL, DON&#8217;T TOUCH IT EVER EVER EVER"},"content":{"rendered":"\n<div class=\"wp-block-gutenbergp5-p5js gutenbergp5-block-p5js gutenbergp5-align-center overflow-x:hidden;\"><iframe frameborder=\"0\" srcdoc=\"\n        <!DOCTYPE html&gt;\n        <html&gt;\n            <head&gt;\n            <script src=&quot;https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/p5.js\/1.6.0\/p5.min.js&quot; integrity=&quot;sha512-3RlxD1bW34eFKPwj9gUXEWtdSMC59QqIqHnD8O\/NoTwSJhgxRizdcFVQhUMFyTp5RwLTDL0Lbcqtl8b7bFAzog==&quot; crossorigin=&quot;anonymous&quot; referrerpolicy=&quot;no-referrer&quot;&gt;<\/script&gt;\n            <\/head&gt;\n            <body style=&quot;padding: 0; margin: 0;&quot;&gt;<\/body&gt;\n            <footer&gt;\n                <script&gt;\n                    class Slider{\n\tconstructor(x, y, width, height, range, startValue, minValue, color) {\n\t\tthis.x = 120;\n\t\tthis.y = 40;\n\t\tthis.width = 30;\n\t\tthis.height = 200;\n\t\tthis.range = 360;\n\t\tthis.minValue = 0;\n\t\tthis.color = color;\n\t\tthis.horizontal = false;\n\t\t\n\t\tif (this.width &gt; this.height) {\n\t\t\tthis.horizontal = true;\n\t\t}\n\t\t\n\t\tthis.value = 0;\n\t\t\n\t\tthis.isMoving = false;\n\t\tthis.moved = 0;\n\t\t\n\t\tthis.knobDiameter = this.width*0.5;\n\t\tif (this.horizontal) {\n\t\t\tthis.knobPos = map(this.value, 0, this.range, 0, this.width - this.height);\n\t\t} else {\n\t\t\tthis.knobPos = map(this.value, 0, this.range, 0, this.height - this.width);\n\t\t}\n\t\t\n\t\tthis.active = true;\n\t\t\n\t\tthis.mousePos = 0;\n\t\t\n\t\tif (this.horizontal) {\n\t\t\tthis.knobDiameter = this.height*0.5;\n\t\t\tthis.startY = this.x + this.width - this.height\/2;\n\t\t}\n\t}\n\t\n\tupdate() {\n\t\tlet isOn;\n\t\tif (this.horizontal) {\n\t\t\tisOn = mouseX &gt; this.x + this.height\/2 &amp;&amp; mouseY &gt; this.y &amp;&amp; mouseX < this.x + this.width - this.height\/2  &amp;&amp; mouseY < this.y + this.height;\n\t\t} else {\n\t\t\tisOn = mouseX &gt; this.x &amp;&amp; mouseY &gt; this.y + this.width\/2 &amp;&amp; mouseX < this.x + this.width &amp;&amp; mouseY < this.y + this.height - this.width\/2;\n\t\t}\n\t\t\n\t\tif (mouseIsPressed &amp;&amp; !this.isMoving &amp;&amp; isOn) {\n\t\t\tthis.isMoving = true;\n\t\t}\n\t\tif (this.isMoving) {\n\t\t\tif (this.horizontal) {\n\t\t\t\tthis.knobPos = mouseX - this.x - this.height\/2;\n\t\t\t} else {\n\t\t\t\tthis.knobPos = this.height - this.width - (mouseY - this.y - this.width\/2);\n\t\t\t}\n\t\t}\n\t\tif (!mouseIsPressed) {\n\t\t\tthis.isMoving = false;\n\t\t}\n\t\t\n\t\t\/\/Calculating absolute value of current knobPos\n\t\tthis.knobPos += this.moved;\n\t\tif (this.horizontal) {\n\t\t\tthis.value = map(this.knobPos, 0, this.width - this.height, 0, this.range) + this.minValue;\n\t\t} else {\n\t\t\tthis.value = map(this.knobPos, 0, this.height - this.width, 0, this.range) + this.minValue;\n\t\t}\n\t\t\n\t\tthis.checkForLimits();\n\t\tthis.show();\n\t}\n\t\n\tshow() {\n\t\trectMode(CORNER);\n\t\tpush();\n\t\ttranslate(this.x, this.y);\n\t\tnoFill();\n\t\tstroke(this.color);\n\t\tstrokeWeight(3);\n\t\trect(0, 0, this.width, this.height, width\/2);\n\t\t\n\t\t\tpush();\n\t\t\tif (!this.horizontal) {\n\t\t\t\ttranslate(this.width\/2, this.height - this.width\/2 - this.knobPos);\n\t\t\t} else {\n\t\t\t\ttranslate(this.height\/2 + this.knobPos, this.height\/2);\n\t\t\t}\n\t\t\tellipse(0, 0, this.knobDiameter);\n\t\t\tpop();\n\t\t\n\t\ttext('', -5, -20);\n\t\tpop();\n\t\trectMode(CENTER);\n\t}\n\t\n\ttoggle() {\n\t\tif (this.active) {\n\t\t\tthis.active = false;\n\t\t} else {\n\t\t\tthis.active = true;\n\t\t}\n\t}\n\t\n\tcheckForLimits() {\n\t\tif (this.value &gt; this.range + this.minValue) {\n\t\t\tthis.value = this.range + this.minValue;\n\t\t\tif (!this.horizontal) {\n\t\t\t\tthis.knobPos = this.height - this.width;\n\t\t\t} else {\n\t\t\t\tthis.knobPos = this.width - this.height;\n\t\t\t}\n\t\t\tthis.moved = 0;\n\t\t \n\t\t} else if (this.value < this.minValue) {\n\t\t\tthis.value = this.minValue;\n\t\t\tthis.knobPos = 0;\n\t\t\tthis.moved = 0;\n\t\t}\n\t}\n}\nlet slider;\n\n\n\nfunction setup() {\n\tcreateCanvas(700,300);\n\tbackground(255);\n \n\t\n\t\n\tsliderR = new Slider(width\/2 - 100, 50, 50, 500, 255, 180, 100,  [102, 16, 242]);\n\t\n\nangleMode(DEGREES)\t\n\n\n}\n\nfunction draw() {\n\t\n\tbackground(34);\n\n\n  \ntextSize(30);\nfill(102, 16, 242);\n  text('SPICE IT UP', 50, 276);\n\ntextSize(15);\n  text('SOFT', 460, 240);\n  text('ROLEPLAY', 375, 262);\n  text('IMPACT PLAY', 233, 220);\n  text('BDSM', 257, 150);\n  text('DANGEROUS', 345, 25);\n\nfill(102, 16, 242);\ncircle(475, 220, 5);\ncircle(415, 244, 5);\ncircle(325, 200, 5);\ncircle(305, 142.5, 5);\ncircle(412, 35, 5);\n\ntextSize(25);\nfill(255);\ntext('FAVOURITE TOY', 0, 20);\n\ntextSize(15);\ntext('(and rotate your phone if needed!)', 50, 290);\n  \n    textSize(20);\n  text('nothing', 0, 230);\n  text('feathers', 0, 208);\n  text('outfits', 0, 190);\n  text('paddles', 0, 168);\n  text('ropes&amp;cuffs', 0, 145);\n  text('needles', 0, 100);\n  text('chainsaw', 0, 60);\n\nfill(102, 16, 242);\narc(410,140,200,200,0,sliderR.value, PIE)\n  textSize(20);\nfill(34);\n  text('DEAD', 440, 130);\n\n  textSize(15);\nfill(34);\n  text('GO AHEAD', 425, 155);\n  \n sliderR.update();\n}\n\n\n\n                <\/script&gt;\n            <\/footer&gt;\n        <\/html&gt;\n        \" sandbox=\"allow-scripts allow-same-origin allow-presentation\" scrolling=\"no\" style=\"width:600px;height:300px;overflow:hidden;\" width=\"600px\" height=\"300px\" class=\"gutenbergp5-noresize\"><\/iframe><\/div>\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"template-page-builder-no-header-footer.php","meta":{"footnotes":""},"class_list":["post-874","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.7 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>THE HEIDELBERG WHEEL, DON&#039;T TOUCH IT EVER EVER EVER - THE CIRCLE<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/enter-thecircle.com\/de\/874-2\/\" \/>\n<meta property=\"og:locale\" content=\"de_DE\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"THE HEIDELBERG WHEEL, DON&#039;T TOUCH IT EVER EVER EVER - THE CIRCLE\" \/>\n<meta property=\"og:url\" content=\"https:\/\/enter-thecircle.com\/de\/874-2\/\" \/>\n<meta property=\"og:site_name\" content=\"THE CIRCLE\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.instagram.com\/enter_thecircle\/\" \/>\n<meta property=\"article:modified_time\" content=\"2024-09-30T13:03:35+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/enter-thecircle.com\\\/874-2\\\/\",\"url\":\"https:\\\/\\\/enter-thecircle.com\\\/874-2\\\/\",\"name\":\"THE HEIDELBERG WHEEL, DON'T TOUCH IT EVER EVER EVER - THE CIRCLE\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/enter-thecircle.com\\\/#website\"},\"datePublished\":\"2024-09-30T12:57:31+00:00\",\"dateModified\":\"2024-09-30T13:03:35+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/enter-thecircle.com\\\/874-2\\\/#breadcrumb\"},\"inLanguage\":\"de\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/enter-thecircle.com\\\/874-2\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/enter-thecircle.com\\\/874-2\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/enter-thecircle.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"THE HEIDELBERG WHEEL, DON&#8217;T TOUCH IT EVER EVER EVER\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/enter-thecircle.com\\\/#website\",\"url\":\"https:\\\/\\\/enter-thecircle.com\\\/\",\"name\":\"THE CIRCLE\",\"description\":\"A sensual overnight cocoon &amp; private spa\",\"publisher\":{\"@id\":\"https:\\\/\\\/enter-thecircle.com\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/enter-thecircle.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"de\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/enter-thecircle.com\\\/#organization\",\"name\":\"THE CIRCLE CONCEPT HOTEL GMBH\",\"url\":\"https:\\\/\\\/enter-thecircle.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"de\",\"@id\":\"https:\\\/\\\/enter-thecircle.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/enter-thecircle.com\\\/wp-content\\\/uploads\\\/2025\\\/01\\\/16-scaled.jpg\",\"contentUrl\":\"https:\\\/\\\/enter-thecircle.com\\\/wp-content\\\/uploads\\\/2025\\\/01\\\/16-scaled.jpg\",\"width\":2560,\"height\":1706,\"caption\":\"THE CIRCLE CONCEPT HOTEL GMBH\"},\"image\":{\"@id\":\"https:\\\/\\\/enter-thecircle.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.instagram.com\\\/enter_thecircle\\\/\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"THE HEIDELBERG WHEEL, DON'T TOUCH IT EVER EVER EVER - THE CIRCLE","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/enter-thecircle.com\/de\/874-2\/","og_locale":"de_DE","og_type":"article","og_title":"THE HEIDELBERG WHEEL, DON'T TOUCH IT EVER EVER EVER - THE CIRCLE","og_url":"https:\/\/enter-thecircle.com\/de\/874-2\/","og_site_name":"THE CIRCLE","article_publisher":"https:\/\/www.instagram.com\/enter_thecircle\/","article_modified_time":"2024-09-30T13:03:35+00:00","twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/enter-thecircle.com\/874-2\/","url":"https:\/\/enter-thecircle.com\/874-2\/","name":"THE HEIDELBERG WHEEL, DON'T TOUCH IT EVER EVER EVER - THE CIRCLE","isPartOf":{"@id":"https:\/\/enter-thecircle.com\/#website"},"datePublished":"2024-09-30T12:57:31+00:00","dateModified":"2024-09-30T13:03:35+00:00","breadcrumb":{"@id":"https:\/\/enter-thecircle.com\/874-2\/#breadcrumb"},"inLanguage":"de","potentialAction":[{"@type":"ReadAction","target":["https:\/\/enter-thecircle.com\/874-2\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/enter-thecircle.com\/874-2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/enter-thecircle.com\/"},{"@type":"ListItem","position":2,"name":"THE HEIDELBERG WHEEL, DON&#8217;T TOUCH IT EVER EVER EVER"}]},{"@type":"WebSite","@id":"https:\/\/enter-thecircle.com\/#website","url":"https:\/\/enter-thecircle.com\/","name":"THE CIRCLE","description":"Ein sinnlicher \u00dcbernachtungs-Kokon &amp; privates Spa","publisher":{"@id":"https:\/\/enter-thecircle.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/enter-thecircle.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"de"},{"@type":"Organization","@id":"https:\/\/enter-thecircle.com\/#organization","name":"THE CIRCLE CONCEPT HOTEL GMBH","url":"https:\/\/enter-thecircle.com\/","logo":{"@type":"ImageObject","inLanguage":"de","@id":"https:\/\/enter-thecircle.com\/#\/schema\/logo\/image\/","url":"https:\/\/enter-thecircle.com\/wp-content\/uploads\/2025\/01\/16-scaled.jpg","contentUrl":"https:\/\/enter-thecircle.com\/wp-content\/uploads\/2025\/01\/16-scaled.jpg","width":2560,"height":1706,"caption":"THE CIRCLE CONCEPT HOTEL GMBH"},"image":{"@id":"https:\/\/enter-thecircle.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.instagram.com\/enter_thecircle\/"]}]}},"blog_post_layout_featured_media_urls":{"thumbnail":"","full":""},"categories_names":null,"comments_number":"0","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/enter-thecircle.com\/de\/wp-json\/wp\/v2\/pages\/874","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/enter-thecircle.com\/de\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/enter-thecircle.com\/de\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/enter-thecircle.com\/de\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/enter-thecircle.com\/de\/wp-json\/wp\/v2\/comments?post=874"}],"version-history":[{"count":223,"href":"https:\/\/enter-thecircle.com\/de\/wp-json\/wp\/v2\/pages\/874\/revisions"}],"predecessor-version":[{"id":1400,"href":"https:\/\/enter-thecircle.com\/de\/wp-json\/wp\/v2\/pages\/874\/revisions\/1400"}],"wp:attachment":[{"href":"https:\/\/enter-thecircle.com\/de\/wp-json\/wp\/v2\/media?parent=874"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}